From 0717f790519ebc7471cc1cf48311808962b70e7c Mon Sep 17 00:00:00 2001 From: CodePencil Date: Thu, 31 Jul 2025 08:46:18 +0800 Subject: [PATCH] Update article.md --- 1-js/99-js-misc/06-unicode/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/99-js-misc/06-unicode/article.md b/1-js/99-js-misc/06-unicode/article.md index 4f144f8241..073d67b592 100644 --- a/1-js/99-js-misc/06-unicode/article.md +++ b/1-js/99-js-misc/06-unicode/article.md @@ -35,7 +35,7 @@ JavaScript allows us to insert a character into a string by specifying its hexad - `\u{X…XXXXXX}` - `X…XXXXXX` must be a hexadecimal value of 1 to 6 bytes between `0` and `10FFFF` (the highest code point defined by Unicode). This notation allows us to easily represent all existing Unicode characters. + `X…XXXXXX` must be a hexadecimal value between `0` and `10FFFF` (the highest code point defined by Unicode), consisting of 1 to 6 hexadecimal digits. This notation allows us to easily represent all existing Unicode characters. ```js run alert( "\u{20331}" ); // 佫, a rare Chinese character (long Unicode)