JavaScript 中的 Unicode
本文帮助你了解在 JavaScript 中插入 Unicode 字符的情况。
JavaScript 中的 Unicode
根据 ES2015 规范,源代码文本使用 Unicode(5.1 及更高版本)表示。源文本由范围从 U+0000
到 U+10FFFF
的代码点组成。
如何保存或交换源代码对 ECMAScript 标准并不重要;但是,它通常被编码为 UTF-8。
在 JavaScript 中插入 Unicode 字符有两种方法;使用 Unicode 转义序列和 String.fromCodePoint
。
Unicode 转义序列
字符串转义序列基于代码点编号传达代码单元。
JavaScript 中的 3 种转义类型:
要插入 Omega
,你可以使用 Unicode 转义序列\u{XXXXXX}
转义 Unicode 代码点(其中 X
表示 U+0000
到 U+10FFFF 范围内的 1-6 个十六进制数字
,涵盖了完整的 Unicode)。
例如,要将 Omega
,即 (U+03A9
) 插入 JavaScript 字符串,你可以按以下方式进行。
const ome = 'Omega: \u{03A9}';
console.log(ome);
运行代码
输出:
"Omega: Ω"
Unicode 已经发展到包含 BMP(基本多语言平面
)中未包含的其他字符。这些字符由代理对
表示,在早期版本的 JavaScript 中无法直接添加代码点。
需要两个相邻的 Unicode 转义序列来适当地表示这些字符。
在 JavaScript 中使用 String.fromCodePoint()
使用 String.fromCodePoint()
函数,你可以将 Unicode 代码点添加到 JavaScript 字符串。它需要一系列代码点(十进制、十六进制、八进制等)作为输入。
例如,使用十进制代码点来显示 Omega
。
const omee = `Omega: ${String.fromCodePoint(937)}`;
console.log(omee);
运行代码
输出:
"Omega: Ω"
相关文章
Do you understand JavaScript closures?
发布时间:2025/02/21 浏览次数:108 分类:JavaScript
-
The function of a closure can be inferred from its name, suggesting that it is related to the concept of scope. A closure itself is a core concept in JavaScript, and being a core concept, it is naturally also a difficult one.
Do you know about the hidden traps in variables in JavaScript?
发布时间:2025/02/21 浏览次数:178 分类:JavaScript
-
Whether you're just starting to learn JavaScript or have been using it for a long time, I believe you'll encounter some traps related to JavaScript variable scope. The goal is to identify these traps before you fall into them, in order to av
How much do you know about the Prototype Chain?
发布时间:2025/02/21 浏览次数:150 分类:JavaScript
-
The prototype chain can be considered one of the core features of JavaScript, and certainly one of its more challenging aspects. If you've learned other object-oriented programming languages, you may find it somewhat confusing when you start
用 jQuery 检查复选框是否被选中
发布时间:2024/03/24 浏览次数:102 分类:JavaScript
-
在本教程中学习 jQuery 检查复选框是否被选中的所有很酷的方法。我们展示了使用直接 DOM 操作、提取 JavaScript 属性的 jQuery 方法以及使用 jQuery 选择器的不同方法。你还将找到许多有用的
jQuery 中的 Window.onload 与 $(document).ready
发布时间:2024/03/24 浏览次数:180 分类:JavaScript
-
本教程演示了如何在 jQuery 中使用 Window.onload 和 $(document).ready 事件。