1

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?

skaffman
  • 398,947
  • 96
  • 818
  • 769
Asheron2332
  • 257
  • 1
  • 4
  • 6

1 Answers1

3

I recommend http://commons.apache.org/lang/api-2.4/org/apache/commons/lang/StringEscapeUtils.html.

bmargulies
  • 97,814
  • 39
  • 186
  • 310