Unicode Blocks Reference

Common Unicode blocks with their code-point ranges and contents.

A developer reference of common Unicode blocks, listing each block name, its hexadecimal code-point range and the characters it contains. Searchable and fully client-side — nothing is uploaded. It runs free in your browser on Gera Tools, with nothing uploaded.

Last updated Source: Gera Tools

What is a Unicode block?

A Unicode block is a contiguous range of code points reserved for a related set of characters, such as Basic Latin, Cyrillic or Emoticons. Each block has a name and a fixed hexadecimal range.

Common Unicode blocks reference

Unicode organises its 149,000+ assigned code points into named blocks — fixed, non-overlapping ranges each reserved for a related family of characters, such as Basic Latin, Cyrillic, Mathematical Operators or Emoticons. This searchable reference lists the blocks developers and writers encounter most often, each with its hexadecimal code-point range and a short note on what it contains.

Why blocks matter for developers

Regex and input validation. When you need to accept only Latin text, or only CJK characters, or reject control characters, you need to know which ranges to include or exclude. A pattern like [�-] matches only ASCII; [Ѐ-ӿ] matches Cyrillic.

Font coverage. Rendering engines fall back to system fonts when a code point falls outside what the current font covers. Knowing the block helps you diagnose missing glyphs and choose fallback stacks.

Encoding bug diagnosis. A character that “looks like” another but behaves differently is often a near-identical code point from a different block — for example, a full-width A (U+FF21) from the Halfwidth and Fullwidth Forms block versus a standard A (U+0041). NFKC normalisation collapses these; knowing the blocks explains why.

How to use this reference

Every Unicode character has a single code point, written with a U+ prefix followed by its hexadecimal value — for example U+0041 is the letter A and U+20AC is the euro sign. To find a character’s block, look for the range that contains its code point.

The table filters live as you type. Search by:

  • Block name (e.g., “arrows”, “cyrillic”)
  • Hex range (e.g., “U+2200” highlights Mathematical Operators)
  • Content keyword (e.g., “emoji”, “superscript”)

Frequently needed blocks

BlockRangeTypical use
Basic Latin (ASCII)U+0000–U+007FEnglish, standard punctuation, control chars
Latin-1 SupplementU+0080–U+00FFAccented letters: é ü ñ
Latin Extended-AU+0100–U+017FCzech, Polish, Turkish: č ž ș
General PunctuationU+2000–U+206FEm dash, en dash, typographic quotes
Currency SymbolsU+20A0–U+20CF₽ ₩ ₪ ₴ ₿
Letterlike SymbolsU+2100–U+214F™ ℅ ℃ ℉
Mathematical OperatorsU+2200–U+22FF∑ ∫ ≤ √ ∞ ≠
Box DrawingU+2500–U+257FTerminal UI frames
DingbatsU+2700–U+27BF✓ ✗ ❄
CJK Unified IdeographsU+4E00–U+9FFFChinese, Japanese, Korean Han
Hangul SyllablesU+AC00–U+D7AFKorean
Private Use AreaU+E000–U+F8FFFont-specific icons (e.g., Font Awesome)
EmoticonsU+1F600–U+1F64F😀 😂 😍 face emoji
Misc. Symbols and PictographsU+1F300–U+1F5FF🌍 🎃 🏠
Supplemental SymbolsU+1F900–U+1F9FF🤔 🦊 newer emoji

The emoji block myth

Emoji are not in one block. When people say “emoji block,” they usually mean the Emoticons block (U+1F600U+1F64F), but objects, animals, flags, and many other emoji are scattered across Miscellaneous Symbols (U+2600U+26FF), Dingbats (U+2700U+27BF), Misc. Symbols and Pictographs (U+1F300U+1F5FF), Transport and Map Symbols (U+1F680U+1F6FF), and Supplemental Symbols and Pictographs (U+1F900U+1F9FF). There is no single emoji range.

This reference covers the most-used blocks and runs entirely client-side — no data is uploaded.