I'm receiving from my server a string with "
char as "
.
I would like to display this string correctly without any coded characters
So I try to use decodeURI or unescape function as follows:
decodeURI(""")
unescape(""")
buy still the output stays coded
"""
Any clue why?
Thanks!