Unicode & ASCII Playground

🧠 Encoding demo • UTF‑8 focus
(uses first Unicode character entered)

Unicode Block

In ASCII?

UTF‑8 Bytes

HTML Entity

Tip: ASCII is 7‑bit (0–127). Anything higher is Unicode-only. UTF‑8 stores Unicode in 1–4 bytes.

What’s happening under the hood?

  1. Unicode assigns each character a unique number called a code point (e.g., 😀 is U+1F600).
  2. UTF‑8 encodes that number as 1–4 bytes so computers can store/transmit it.
  3. ASCII is just the first 128 code points (U+0000–U+007F). If your character is ≥128, it isn’t ASCII.