字符串转Unicode码
Posted 程序猿-alvin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符串转Unicode码相关的知识,希望对你有一定的参考价值。
var str = ‘中‘;
var charCode = str.charCodeAt(0);
console.log(charCode); // => 20013;
str.charCodeAt(0).toString(16);//=>"4e2d"
以上是关于字符串转Unicode码的主要内容,如果未能解决你的问题,请参考以下文章