I want to convert hexadecimal byte to Unicode. I have hex 0x80 in Windows-1250 and I want to convert to '\u0402'. Is it possible with standard methods without switch.
|
Try to identify the encoding of your current text (your bytes) and use
to read the bytes into a string. After that you can convert the string to bytes again, using the correct encoding. Further Reading
|
|||||||
|
|
Let's clear things out: you have some bytes in CP1250, and you know the encoding. You want to send them to some system in a string with either those characters escaped in the form First of all, following advice given by Andreas_D: now to have an array of bytes in utf-16, use to get this string as an ASCII string with unicode character escaped, use this example |
|||
|
\0x80shows up asЂ, then you use CP-1251. In CP-1250 it's€. – Andreas_D Jun 1 '11 at 8:43