String htmlToXml = "<div>Lorem dorum 漢字 is > <p>é</p></div>";
String xmlString = unescapeUnicodeHtml(htmlToXml);
assert "<div>Lorem dorum 漢字 is > <p>é</p></div>".equals(xmlString);
Is there a library that I can use to implement unescapeUnicodeHtml
? If not, what is the best way to implement it?