當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。