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 ?