Unicode ⇄ Chinese
About Unicode:
- Unicode is a universal character set standard covering global scripts.
- Each character has a unique code point, regardless of language or symbol.
- Code points range from U+0000 to U+10FFFF, covering 1,114,112 possible values.
- Usually written in hexadecimal with the U+ prefix.
- Programming languages use escape sequences to represent Unicode.
- Example: in JavaScript, use \uXXXX for BMP characters.