在node.js 中文是3个字节吗?
发布于 2年前 作者 raymondzhong 856 次浏览

var bb= new Buffer(2) bb.write(“中",0) console.log(bb.toString('utf8’,0)+">>>>>>>>>>>>>>>>>>>>”) 输出 >>>>>>>>>>>>>>>>>>>>

var bb= new Buffer(3) bb.write(“中",0) console.log(bb.toString('utf8’,0)+">>>>>>>>>>>>>>>>>>>>”) 输出 中>>>>>>>>>>>>>>>>>>>>

1 回复

中文在 UTF-8 里的编码是 3 个字节是没错

回到顶部