To our Java Gurus - how can I convert ASCII String that contains strictly \u-escape sequence into *true* UTF-8 (multi) bytes?
I've tried SUN's sample from
here. The sample works as it is, my issue however is that in there Java Compiler apparently
takes care of \u-escape Literals. If I supply true ASCII source from File or DB run-time (like for example "\u00ea\u00f1\u00fc") the
resulting Byte sequence is identical to the Source (ASCII to ASCII, no surprise here)
Hints, Tips, RTFMs warmly welcomed