vote up 0 vote down star

I need to convert the unicode characters to ansi characters

byte[] encode = Encoding.Convert(Encoding.Unicode, Encoding.Default, report);

I use this piece of code. While I am viewing this I found that extra ? character is added in the first part

?FF EE 20 12

flag

70% accept rate
1  
You are not converting "unicode characters" to "ansi characters" here - you are converting characters to their numeric representations in the default system encoding. Understanding this difference is essential to avoid surprises. – bzlm Aug 6 at 10:19

2 Answers

vote up 2 vote down

It would be helpful if you posted the input string as well as the output.

Encoding.Convert() will output a '?' when it tries to convert a character in the source that does not have a corresponding character in the target encoding.

The sequence at the start of your output looks suspiciously close to a Byte Order Mark (BOM). ANSI codepages don't have these, so if your Unicode stream has a BOM at the start you might try stripping it off before passing the data to the converter.

link|flag
vote up 1 vote down

In this particular case, it looks like your input data contains stuff that shouldn't be in there (cf. Michael's answer).

In the general case, when converting between encodings, you can implement your own encoding fallback mechanism using the EncoderReplacementFallback class. You could easily make it return empty for unsupported characters. Simply supply an Encoding that uses your fallback when converting.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.