杨__羊羊
在C#中运行UnicodeEncoding encoding = new UnicodeEncoding();byte[] bytes = encoding.GetBytes("Hello");将创建一个数组72,0,101,0,108,0,108,0,111,0字节数组对于代码大于255的字符,它将如下所示字节数组如果您想在JavaScript中实现非常相似的行为,则可以执行此操作(v2是更强大的解决方案,而原始版本仅适用于0x00〜0xff)var str = "Hello竜";var bytes = []; // char codesvar bytesv2 = []; // char codesfor (var i = 0; i < str.length; ++i) { var code = str.charCodeAt(i); bytes = bytes.concat([code]); bytesv2 = bytesv2.concat([code & 0xff, code / 256 >>> 0]);}// 72, 101, 108, 108, 111, 31452console.log('bytes', bytes.join(', '));// 72, 0, 101, 0, 108, 0, 108, 0, 111, 0, 220, 122console.log('bytesv2', bytesv2.join(', '));