How to read unicode character out of XML?
I am working with some XML that I read in that contains some unicode like this: "some text\u00CCsome more text".
If I have a string like this in the editor I can directly place it and the unicode will be interpreted.
However with the imported string I have to use a function that finds the code in the string
and then used the String.fromCharCode(uc) to substitute the code with the actual character. Am I missing something? Is there a better way to do it?
Thanks,
Ralf
