i have a following problem: I am parsing a website with Node-Red "html request"-component. It returns a UTF-8 String representation of a web page, which i try to process afterwards in Javascript function. My problem ist that strings in some elements on the page are being encoded like
привет
which should actualy say
привет
What kind of escaping is that? It looks like unicode, but with "&#x" instead of "/u0". How can i make the text human-readable again using javascript?