📅  最后修改于: 2023-12-03 14:42:27.259000             🧑  作者: Mango
JavaScript 中的 String.fromCodePoint() 方法可用于创建一个字符串,该字符串包含由一个或多个 Unicode 码点指定的字符。
String.fromCodePoint(num1[, num2[, ...[, numN]]])
返回一个由指定 Unicode 码点构成的字符串。
// 创建单个字符
console.log(String.fromCodePoint(65)); // A
// 创建多个字符
console.log(String.fromCodePoint(65, 66, 67)); // ABC
// 使用箭头函数和 map 创建字符串
const codePoints = [9731, 9733, 9842, 0x2F804];
console.log(codePoints.map(code => String.fromCodePoint(code)).join('')); // ☃★♲你
// 创建字符串中的 emoji 表情
console.log(String.fromCodePoint(0x1F601)); // 😁