I am reading line by line from standard input with Scanner, then i print these lines to standard output. But, i need to convert escaped Unicode characters like \u00fd to actual character. Is there any way how to do it?
Asked
Active
Viewed 4,007 times
1
-
Are users typing in `"\u00fd"`, or `ý`? There are already a number of questions on this: http://stackoverflow.com/questions/3537706/ and http://stackoverflow.com/questions/3630609, to start. – Matt Ball Mar 29 '11 at 22:37
-
The input is \u00fd, i need to get ý, but i am getting \u00fd – Asheron2332 Mar 29 '11 at 22:38
-
1A good place to start. http://commons.apache.org/lang/ – kensen john Mar 29 '11 at 22:47