Convert/Represent 1 byte char in 2 bytes
Hello All,
I would like to convert/represent the 1 byte char to 2 byte.
for example the "Test " is a 9 byte string if i use getBytes()
the byte array length is 7 bytes but if i use getBytes("UTF8")
i'm getting 9 bytes but it's not printing " "
Now i want to represent them in a 2 byte. How do i do that?
Regards
G S Sundaram

