This commit is contained in:
Ilya Kantor 2017-09-19 21:19:00 +02:00
parent a80375714b
commit 044ff6f100

View file

@ -88,7 +88,7 @@ Examples with unicode:
```js run ```js run
alert( "\u00A9" ); // © alert( "\u00A9" ); // ©
alert( "\u{20331}" ); // 𠌱, a rare chinese hieroglyph (long unicode) alert( "\u{20331}" ); // , a rare chinese hieroglyph (long unicode)
alert( "\u{1F60D}"); // 😍, a smiling face symbol (another long unicode) alert( "\u{1F60D}"); // 😍, a smiling face symbol (another long unicode)
``` ```