Posted By:
Peter_Mamrukov
Posted On:
Sunday, March 27, 2005 01:05 PM
Hi
I have a String containing HEX values for example:
String myString="F3DA";
I would like to get the unicode that this HEX value represent.
I tried to make
Char ch='92'; // 92 in ASCII is ""
and then
s=ch+"u"+myString;
But when I am trying to System...print(s) I get
myString="\uF3DA"
and I need that myString to contain "uF3DA".
Do you have any suggestions?
Thank you very much.