大家好,欢迎来到IT知识分享网。
JS中文转Unicode,Unicode转中文
一、JS中文转Unicode
function leftZero(str) {
if (str != null && str != '' && str != 'undefined') {
if (str.length == 2) {
return `00${str}`;
}
}
return str;
}
function unicode(str) {
let value = '';
for (let i = 0; i < str.length; i++) {
// eslint-disable-next-line radix
value += `\\u${leftZero(parseInt(str.charCodeAt(i)).toString(16))}`;
}
return value;
}
二、JS Unicode转中文
function reconvert(str) {
str = str.replace(/(\\u)(\w{1,4})/gi, function($0) {
return (String.fromCharCode(parseInt((escape($0).replace(/(%5Cu)(\w{1,4})/g, '$2')), 16)));
});
str = str.replace(/(&#x)(\w{1,4});/gi, function($0) {
return String.fromCharCode(parseInt(escape($0).replace(/(%26%23x)(\w{1,4})(%3B)/g, '$2'), 16));
});
str = str.replace(/(&#)(\d{1,6});/gi, function($0) {
// eslint-disable-next-line radix
return String.fromCharCode(parseInt(escape($0).replace(/(%26%23)(\d{1,6})(%3B)/g, '$2')));
});
return str;
}
免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://yundeesoft.com/14023.html