How to encode characters to something like 鰂邨

  • Thread starter Thread starter Mullin Yu
  • Start date Start date
M

Mullin Yu

hi,

i have some unicode characters and want to convert them into something like
鰂邨

which class and function can i use?

thanks!
 
Hi Mullin Yu,

You can get the numeric value of a unicode character by using

int n = Convert.ToInt32(char c);

Happy coding!
Morten Wennevik [C# MVP]
 
Back
Top