Handle Unicode text, emoji, encoding, normalization, code points, and safe storage.
Lessons
Write characters with \u and \u{...} escapes.
Unicode Escapes in Code is easiest to learn by reading the example, changing it, and observing the result.
// Two escape forms in JavaScript
const a = 'é'; // é (exactly 4 hex digits, UTF-16 unit)
const b = '\u{1F600}'; // 😀 (code point escape, any length)
console.log(a, b);
console.log('\u{48}\u{69}'); // "Hi"Practice the Unicode Escapes in Code example in a small scratch file, then explain what changed and why.