0

I have a html-text containing escaped charaters, which I would like replace into a nonescaped readable form:

Example:

'bla bla '

I know that 39 is just an ascii code for the character '. I could simply parse the hole text, extract the code and write the corresponding character.

My Question. Is there any method from java base to do this ?

mcfly soft
  • 11,289
  • 26
  • 98
  • 202
  • "method from java base" but why reinvent the wheel? Others already done it for us: [Java: How to unescape HTML character entities in Java?](https://stackoverflow.com/q/994331) – Pshemo Feb 16 '18 at 09:39
  • No, it's not the ASCII code; It's the Unicode codepoint. Another example, 🚲 – Tom Blodget Feb 16 '18 at 15:26

0 Answers0