Is it possible to convert short
array to string
, then show the text?
short[] a = new short[] {0x33, 0x65, 0x66, 0xE62, 0xE63};
There are utf16
(thai characters) contains in the array. How can it output and show the thai and english words?
Thank you.