Код: Выделить всё
&#FF;&#FE;Y�F�T�8�1�1�...
Код: Выделить всё
YFT811 {1500}02 P *{1510}...
Я пробовал:
Код: Выделить всё
// Get UTF16 bytes and convert UTF16 bytes to UTF8 bytes
byte[] utf16Bytes = Encoding.Unicode.GetBytes(utf16String);
byte[] utf8Bytes = Encoding.Convert(Encoding.Unicode, Encoding.UTF8, utf16Bytes);
// Return UTF8 bytes as ANSI string
return Encoding.Default.GetString(utf8Bytes);
Подробнее здесь: https://stackoverflow.com/questions/793 ... ng-to-utf8