如何将 Unicode 值转换为字符:
let char = String.fromCharCode(65);
亲自试一试 »
let text = String.fromCharCode(72, 69, 76, 76, 79);
亲自试一试 »
这个String.fromCharCode()
方法将 Unicode 值转换为字符。
这个String.fromCharCode()
是 String 对象的静态方法。
语法始终是String.fromCharCode()
。
你不能使用myString.fromCharCode()
。
String.fromCharCode(
n1,
n2, ...,
nX)
Parameters | Description |
n1, n2, nX | Required. One or more Unicode values to be converted. |
类型 | 描述 |
一个字符串 | 表示 unicode 字符的字符串。 |
有关所有 Unicode 值的列表,请研究我们的完整的 Unicode 参考。
String.fromCharCode()
是 ECMAScript1 (ES1) 功能。
所有浏览器均完全支持 ES1 (JavaScript 1997):
Chrome | Edge | Firefox | Safari | Opera | IE |
Yes | Yes | Yes | Yes | Yes | Yes |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!