I’m using the Google Maps API. Please see this JSON response.
The HTML instructions is written like this:
"html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eEnggårdsgade\u003c/b\u003e"
How can I convert the unicodes \u003c, \u003e etc. in JavaScript?
Those are Unicode character escape sequences in a JavaScript string. As far as JavaScript is concerned, they are the same character.
So, you don’t need to do any conversion at all.