当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JavaScript String fromCodePoint()用法及代码示例


JavaScript String fromCodePoint() 方法返回使用给定的代码点序列创建的字符串。

用法:

String.fromCodePoint(num1, ..., numN)

fromCodePoint() 方法是静态方法,使用String 类名调用。

参数:

fromCodePoint() 方法接受:

  • num1, ..., numN - 一系列代码点。

返回:

  • 返回使用指定的代码点序列创建的字符串。

注意

  • 如果给出了无效的 Unicode 代码点,fromCodePoint() 方法将抛出 RangeError
  • fromCodePoint() 方法返回一个字符串而不是 String 对象。

示例:使用fromCodePoint() 方法

let string1 = String.fromCodePoint(65, 66, 67);
console.log(string1); // ABC

let string2 = String.fromCharCode(72, 69, 76, 76, 79);
console.log(string2); // HELLO

// numbers can be passed as hexadecimals
let string3 = String.fromCodePoint(0x2f804);
console.log(string3); // "\uD87E\uDC04"

// unlike fromCharCode() that requires surrogate pair to return supplementary char
// fromCodePoint() can even return 4-byte supplementary chars
let string4 = String.fromCodePoint(0x1f303);
console.log(string4); // Unicode character "Night with Stars"

let string5 = String.fromCodePoint(Infinity);
console.log(string5); // RangeError

输出

ABC
HELLO
\uD87E\uDC04
<unicode Night with Stars>
RangeError: Invalid code point Infinity

相关用法


注:本文由纯净天空筛选整理自 JavaScript String fromCodePoint()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。