기본 다국어 평면 (BMP)
평면 0(U+0000~U+FFFF)으로, 라틴, 그리스, 키릴, CJK, 아랍 문자 및 대부분의 기호 등 가장 많이 사용되는 문자를 포함합니다. 이 평면의 문자는 단일 UTF-16 코드 단위에 맞습니다.
What is the Basic Multilingual Plane?
The Basic Multilingual Plane (BMP) is Plane 0 of the Unicode code space, covering code points U+0000 through U+FFFF — a range of exactly 65,536 positions. It was designed to hold all the characters needed for modern text in the world's actively used scripts, and it largely succeeded: the Latin, Greek, Cyrillic, Arabic, Hebrew, Devanagari, CJK, and dozens of other scripts all fit within the BMP.
The BMP's boundaries matter beyond just organization. Because BMP code points fit in a single 16-bit value (0x0000–0xFFFF), they can be stored as a single code unit in UTF-16, and they are the direct ancestors of UCS-2, the predecessor to UTF-16.
What Lives in the BMP
The BMP is organized into blocks — contiguous ranges assigned to specific scripts or purposes. Notable regions include:
| Range | Contents |
|---|---|
| U+0000–U+007F | Basic Latin (ASCII) |
| U+0080–U+00FF | Latin-1 Supplement |
| U+0370–U+03FF | Greek and Coptic |
| U+0400–U+04FF | Cyrillic |
| U+0600–U+06FF | Arabic |
| U+0900–U+097F | Devanagari |
| U+3040–U+309F | Hiragana |
| U+30A0–U+30FF | Katakana |
| U+4E00–U+9FFF | CJK Unified Ideographs (core) |
| U+AC00–U+D7AF | Hangul Syllables (11,172 precomposed) |
| U+E000–U+F8FF | Private Use Area |
| U+D800–U+DFFF | Surrogate range (not real characters) |
| U+FFF0–U+FFFF | Specials (including U+FFFD replacement character) |
The Surrogate Hole
One important quirk: the range U+D800–U+DFFF (2,048 code points) is permanently reserved for surrogates — the mechanism UTF-16 uses to encode characters above U+FFFF. These code points can never be assigned to real characters. You will sometimes see UTF-16 described as covering the "BMP minus surrogates."
BMP vs Supplementary Characters
Any character with a code point above U+FFFF is a supplementary character and requires special handling in encodings optimized for the BMP:
| Encoding | BMP character | Supplementary character |
|---|---|---|
| UTF-8 | 1–3 bytes | 4 bytes |
| UTF-16 | 1 code unit (2 bytes) | 2 code units (4 bytes, surrogate pair) |
| UTF-32 | 1 code unit (4 bytes) | 1 code unit (4 bytes, no difference) |
In UTF-16, supplementary characters require a surrogate pair — two 16-bit code units working together. Most emoji fall into Plane 1 (U+1F000+) and are therefore supplementary.
Historical Significance
Early Unicode architects hoped that 65,536 code points would be enough for all world languages forever. They were wrong. By Unicode 2.0, it was clear that CJK ideographs alone would eventually overflow the BMP, and the standard was extended to 17 planes. This is why legacy systems built on UCS-2 (a fixed-width 16-bit encoding) failed: they could only represent BMP characters.
Common Pitfalls
UCS-2 vs UTF-16: UCS-2 encodes only the BMP using fixed 2-byte units. UTF-16 extends UCS-2 with surrogate pairs for supplementary characters. Many old systems claiming "Unicode support" actually only support UCS-2 (BMP-only).
Emoji in JavaScript: Because JavaScript strings are UTF-16, emoji (Plane 1) have .length of
2, not 1. Iterating with spread or Array.from() corrects this.
"🎉".length // 2 (two UTF-16 code units)
[..."🎉"].length // 1 (one Unicode code point)
Quick Facts
| Property | Value |
|---|---|
| Code point range | U+0000–U+FFFF |
| Total positions | 65,536 |
| Plane number | 0 |
| Also known as | Plane 0, BMP |
| UTF-16 code units needed | 1 (for all non-surrogate BMP chars) |
| Surrogate range (excluded) | U+D800–U+DFFF (2,048 points) |
| Characters assigned (approx.) | ~55,000 |
| Predecessor encoding | UCS-2 (BMP-only, no surrogates) |
관련 용어
유니코드 표준의 더 많은 용어
한중일 — 유니코드에서 통합 한자 블록 및 관련 문자 체계를 아우르는 집합적 …
The process of mapping Chinese, Japanese, and Korean ideographs that share a …
The individual consonant and vowel components (jamo) of the Korean Hangul writing …
유니코드와 동기화된 국제 표준(ISO/IEC 10646)으로, 동일한 문자 목록과 코드 포인트를 정의하지만 유니코드의 …
모든 문자 체계의 모든 문자에 고유 번호(코드 포인트)를 부여하는 범용 문자 인코딩 …
Normative or informative documents that are integral parts of the Unicode Standard. …
Informational documents published by the Unicode Consortium covering specific topics like security …
어느 유니코드 버전에서도 문자가 할당되지 않은 코드 포인트로, Cn(미할당)으로 분류됩니다. 향후 버전에서 …
평면 1~16(U+10000~U+10FFFF)으로, 이모지, 고대 문자, CJK 확장, 악보 등을 포함합니다. UTF-16에서는 서로게이트 …
내부 사용을 위해 영구 예약된 코드 포인트(총 66개): 각 평면의 U+FDD0~U+FDEF 및 …