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 fromCharCode()用法及代碼示例
- JavaScript String fontsize()用法及代碼示例
- JavaScript String fixed()用法及代碼示例
- JavaScript String fontcolor()用法及代碼示例
- JavaScript String slice()用法及代碼示例
- JavaScript String length用法及代碼示例
- JavaScript String padStart()用法及代碼示例
- JavaScript String link()用法及代碼示例
- JavaScript String blink()用法及代碼示例
- JavaScript String repeat()用法及代碼示例
- JavaScript String charCodeAt()用法及代碼示例
- JavaScript String endsWith()用法及代碼示例
- JavaScript String substr()用法及代碼示例
- JavaScript String charAt()用法及代碼示例
- JavaScript String normalize()用法及代碼示例
- JavaScript String search()用法及代碼示例
- JavaScript String trim()用法及代碼示例
- JavaScript String strike()用法及代碼示例
- JavaScript String matchAll()用法及代碼示例
- JavaScript String sub()用法及代碼示例
注:本文由純淨天空篩選整理自 JavaScript String fromCodePoint()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。