标签:style class code ext width color string cti rgb line har
/*
*js Unicode编码转换
*/
var decToHex = function(str)
{
var res=[];
for(var i=0;i < str.length;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));
JS 字符unicode转换函数,码迷,mamicode.com
标签:style class code ext width color string cti rgb line har
原文地址:http://www.cnblogs.com/okBabyfaceBoy/p/3702785.html