> I have a string that contains the characters \u201a - that is a six
> character string. How do I convert this to a single Unicode char ?

Well, if you *know* it begins with "\u",
 (char) Integer.parseInt(s.substring(2), 16);
will work

M.

Reply via email to