It is coded but I want to replace the letters where the accents and the question mark correspond, what function could I use to do this?
It is coded but I want to replace the letters where the accents and the question mark correspond, what function could I use to do this?
The Hola, u00bfen quu00e9 puedo ayudarte?
string uses Unicode encoding but is incomplete.
Instead of
u00bf
must be \u00bf
u00e9
must be \u00e9
The following code writes the decoded phrase
document.write('Hola, \u00bfen qu\u00e9 puedo ayudarte?')
Reference