JS 实现 unicode 中文互转
Posted 梁凤财Zeno
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS 实现 unicode 中文互转相关的知识,希望对你有一定的参考价值。
// 转为unicode 编码
function encodeUnicode(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");
}
// 解码
function decodeUnicode(str) {
str = str.replace(/\\/g, "%");
return unescape(str);
}
以上是关于JS 实现 unicode 中文互转的主要内容,如果未能解决你的问题,请参考以下文章