I believe that you can change the encoding of the source code from Eclipse (or from any decent editor). Install it in UTF-8. Then everything should behave smoothly because Java strings are Unicode.
I would highly recommend using the correct encoding in the source instead of this \ uXXX entry. The reason is how you exit the code, which means, for example, the value \ u00A3? It is much clearer just to put the correct character there.
source share