JS 字符unicode转换函数
2020-11-22 18:31
标签:style class code ext width color string cti rgb line har /* JS 字符unicode转换函数,搜素材,soscw.com JS 字符unicode转换函数 标签:style class code ext width color string cti rgb line har 原文地址:http://www.cnblogs.com/okBabyfaceBoy/p/3702785.html
*js Unicode编码转换
*/
var decToHex = function(str)
{
var res=[];
for(var i=0;i
res[i]=("00"+str.charCodeAt(i).toString(16)).slice(-4);
return "\\u"+res.join("\\u");
}
var hexToDec = function(str)
{
str=str.replace(/\\/g,"%");
return unescape(str);
}
var str=decToHex("decToHex
unicode 编码转换");
alert("编码后:"+str+"\n\n解码后:"+hexToDec(str));