js 将 unicode编码转换中文2种方式
2021-07-22 本文已影响0人
浅浅_2d5a
1、网上有工具
2、带/u 或者%u的是unicode编码结果
3、转中文方式
var str = "\u7ad9\u957f"; // "站长 "
// str = eval("'" + str + "'");
// str = unescape(str); //已废弃 但是/u 或者%u需要使用
alert(str)
详细:
unescape() 函数可对通过 escape() 编码的字符串进行解码,已废弃。
编码和解码一一对应关系
escape() 编码, unescape() 解码 废弃
encodeURI 编码,decodeURI 解码
encodeURIComponent 编码,decodeURIComponent 解码
用什么解码对应的文件内容
// str = escape(str) //%u4E2D%u56FD
// str = encodeURI(str) //%E4%B8%AD%E5%9B%BD
str = encodeURIComponent(str) //%E4%B8%AD%E5%9B%BD