帆软cjkEncode 源码
function cjkEncode(text) {
if (text == null) {
return “”;
}
var newText = “”;
for (var i = 0; i < text.length; i++) {
var code = text.charCodeAt (i);
if (code >= 128 || code == 91 || code == 93) {//91 is “[“, 93 is “]”.
newText += “[” + code.toString(16) + “]”;
} else {
newText += text.charAt(i);
}
}
return newText;
}