C# and character decoding
I have a string \u0025A3\u0025A3... e.t.c. So how can I decode 开发者_开发百科that to normal view in C#.
I mean sequence \u0025A3\u0025A3 should looks in decoded mode. For example, the \u0025A3\u0025A3 sequence should looks like "::".
Thanks.
You can use split method to decode your string .
The Unicode characters in your string are above \uFFFF so they will display as "?" in the default windows character set, or a "
精彩评论