Possible Duplicate:
How do I decode a string with escaped unicode?
I'm having a javascript variable, in which i have stored a unicode character.
var value = "\\u53d3\\u5f13\\";
I'm adding the above value dynamically to a div, due to the extra back slash(\\u) proper unicode value is not shown. But if I Change it to single back slash that is \u instead of \\u . The unicode symbol is correctly shown.
In my environment I can not store the value with single back slash. As the response is from the server side..
Is there anyway to replace the double backslash with single backslash to show the proper unicode?
Thanks in Advance