作者:YANLIUPING | 来源:互联网 | 2022-12-24 17:48
我正在尝试转换统一的表情符号串.
尝试执行此操作时出错:
var code = '1f628'
`\u{${code}}`
SyntaxError:无效的Unicode转义序列
我怎样才能使它工作?
1> AuxTaco..:
String.fromCodePoint
将从数字代码点获取字符,并parseInt
从十六进制字符串中获取数字:
var code = '1f628';
String.fromCodePoint(parseInt(code, 16)); //