js 获取字符串的UTF8编码

 

蓝牙传递数据就转成字节流就行,即使用getUTF8Bytes()方法就行

// 获取字符串的utf8字节流
			function getUTF8Bytes(str) {
			  var bytes = [];
			  var len = str.length;
			  for (var i = 0; i<len; ++ i) {
			    var code = str.charCodeAt(i);
			    if (code >= 0x10000 && code <= 0x10ffff) {
			      bytes.push((code >> 18) | 0xf0);                // 第一个字节
			      bytes.push(((code >> 12) & 0x3f) | 0x80);
			      bytes.push(((code >> 6) & 0x3f) | 0x80);
			      bytes.push((code & 0x3f) | 0x80);
			    } else if (code >= 0x800 && code <= 0xffff) {
			      bytes.push((code >> 12) | 0xe0);
			      bytes.push(((code >> 6) & 0x3f) | 0x80);
			      bytes.push((code & 0x3f) | 0x80);
			    } else if (code >= 0x80 && code <= 0x7ff) {
			       bytes.push((code >> 6) | 0xc0);
			       bytes.push((code & 0x3f) | 0x80);
			    } else {
			      bytes.push(code)
			    }
			  }
			
			  return bytes;
			}
			console.log(getUTF8Bytes('谢迪'))
			// 将字节流转换成16进制字符串
			function hexString(bytes) {
			  var arr = bytes.map(function (code) {
			    return (code).toString(16).toUpperCase();
			  });
			
			  return arr.join(' ');
			}
			
			function utf8(str) {
			   return hexString(getUTF8Bytes(str));
			}
			console.log(utf8('谢迪'))

 

调用函数utf8,这才是JavaScript得到字符串的UTF8编码的正确姿势!从UTF8编码转换到字符串,做相反工作即可。

转自https://segmentfault.com/a/1190000013965550?utm_source=tag-newest

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章