var str = "\u6211\u662Funicode\u7F16\u7801";
Regarding the problem of converting such data into Chinese, there are two commonly used methods.
1. eval parsing
str = eval("'" str "'"); // "I am unicode encoding"
2. unescape parsing
str = unescape(str.replace(/\u/g, "%u")); // "I am unicode encoding"
Little knowledge points, record and share