如何使用js中的String.fromCodePoint 函数

2025-06-25 16:36:00

1、语法String.fromCodePoint(...codePoints);

如何使用js中的String.fromCodePoint 函数

2、参数codePoints必需。指定一个或多个 UTF-16 码位值的 rest 参数。

3、备注如果...codePoints不是有效的 UTF-16 码位,此函数将引发RangeError异常。

4、示例var str1 = String.fromCodePoint(0x20BB7);var str2 = String.fromCodePoint(98);var str3 = String.fromCodePoint(97, 98, 99);if(console && console.log) { console.log(str1); console.log(str2); console.log(str3);}// Output:// 𠮷// b// abc

如何使用js中的String.fromCodePoint 函数

5、要求Microsoft Edge(E蟠校盯昂dge 浏览器)中受支持。应用商店应用(Windows 10 上的 M足毂忍珩icrosoft Edge)中也受支持。请参阅版本信息。在以下文档模式中不受支持:Quirks、Internet Explorer 6 标准模式、Internet Explorer 7 标准模式、Internet Explorer 8 标准模式、Internet Explorer 9 标准模式、Internet Explorer 10 标准模式和 Internet Explorer 11 标准模式。在 Windows 8.1 中不受支持。

声明:本网站引用、摘录或转载内容仅供网站访问者交流或参考,不代表本站立场,如存在版权或非法内容,请联系站长删除,联系邮箱:site.kefu@qq.com。
猜你喜欢