0

I have a jsp in which I need to do an unescape fix. I need to show this \uFFA0\uFFA0\uFF94\uFF93\uFF82\uFFA0 (which are japanese characteres) in a readable format.

I can see that in javascript, it works fine running this in console: unescape('\uFFA0\uFFA0\uFF94\uFF93\uFF82\uFFA0')

Hope to get some help on this. I must to do it in Java 6.

Thanks

Alex-CG
  • 31
  • 1

1 Answers1

0

You can output direct the string

"ᅠᅠヤモツᅠ"
Holger
  • 899
  • 2
  • 7
  • 12