Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 291199
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T06:04:02+00:00 2026-05-12T06:04:02+00:00

If I have a string of UTF-8 characters and they need to be output

  • 0

If I have a string of UTF-8 characters and they need to be output to an older system as UTF-7 I have two questions pertaining to this.

  1. How can I convert a string s which has UTF-8 characters to the same string without those characters efficiently?

  2. Are there any simple of converting extended characters like ‘Ō’ to their closest non extended equivalent ‘O’?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T06:04:02+00:00Added an answer on May 12, 2026 at 6:04 am

    If the older system can actually handle UTF-7 properly, why do you want to remove anything? Just encode the string as UTF-7:

    string text = LoadFromWherever(Encoding.UTF8);
    byte[] utf7 = Encoding.UTF7.GetBytes(text);
    

    Then send the UTF-7-encoded text down to the older system.

    If you’ve got the original UTF-8-encoded bytes, you can do this in one step:

    byte[] utf7 = Encoding.Convert(Encoding.UTF8, Encoding.UTF7, utf8);
    

    If you actually need to convert to ASCII, you can do this reasonably easily.

    To remove the non-ASCII characters:

    var encoding = Encoding.GetEncoding
        ("us-ascii", new EncoderReplacementFallback(""), 
         new DecoderReplacementFallback(""));
    byte[] ascii = encoding.GetBytes(text);
    

    To convert non-ASCII to nearest equivalent:

    string normalized = text.Normalize(NormalizationForm.FormKD);
    var encoding = Encoding.GetEncoding
        ("us-ascii", new EncoderReplacementFallback(""), 
         new DecoderReplacementFallback(""));
    byte[] ascii = encoding.GetBytes(normalized);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have string that displays UTF-8 encoded characters, and I want to convert it
Let's say I have a string that can contain any UTF-16 characters, but I
Suppose I have this code: String encoding = UTF-16; String text = [Hello StackOverflow];
I am trying to convert UTF-8 string into UCS-2 string. I need to get
I have some UTF-8 strings in memory (this is part of a bigger system)
problem: I have a string containing special characters which i convert to bytes and
I have a string \\u003c, which belongs to UTF-8 charset. I am unable to
I have created a function which gets an encoded string (possibly UTF-16 not sure)
I have some problem to get the utf-8 string from PHP using jQuery $.load()
C# question here.. I have a UTF-8 string that is being interpreted by a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.