CJK (한중일)
한중일 — 유니코드에서 통합 한자 블록 및 관련 문자 체계를 아우르는 집합적 용어. CJK 통합 한자는 20,992개 이상의 문자를 포함합니다.
What is CJK?
CJK stands for Chinese, Japanese, and Korean — the three major East Asian languages whose writing systems share a common inventory of logographic characters known as CJK Unified Ideographs. In Unicode, CJK refers specifically to the process of encoding these shared ideographs in a single unified code block rather than encoding separate sets for each language.
The term is sometimes extended to CJKV (adding Vietnamese) since Vietnamese historically used Chữ Nôm, a writing system also based on Chinese ideographs.
The Han Unification Decision
The central and controversial decision in Unicode's CJK handling is Han unification: assigning a single code point to an ideograph that appears in two or more of the CJK writing traditions, even if those traditions render it with slightly different glyph shapes.
For example, the ideograph meaning "country/nation" is: - Chinese: 国 (Simplified) or 國 (Traditional) - Japanese: 国 (Kanji) - Korean: 국 (Hanja, pronounced "guk")
Unicode assigns both Simplified 国 (U+56FD) and Traditional 國 (U+570B) as separate code points because they have distinct shapes. But many other ideographs that differ only in minor glyph details between countries are unified into a single code point, with font selection determining the rendering variant.
CJK Code Blocks in Unicode
| Block | Range | Count | Contents |
|---|---|---|---|
| CJK Unified Ideographs | U+4E00–U+9FFF | ~20,000 | Core Han characters |
| CJK Extension A | U+3400–U+4DBF | 6,592 | Rare characters |
| CJK Extension B | U+20000–U+2A6DF | 42,720 | Rare/historic (Plane 2) |
| CJK Extension C | U+2A700–U+2B73F | 4,154 | Rare |
| CJK Extension D | U+2B740–U+2B81F | 222 | Rare |
| CJK Extension E | U+2B820–U+2CEAF | 5,762 | Very rare |
| CJK Extension F | U+2CEB0–U+2EBEF | 7,473 | Very rare |
| CJK Extension G | U+30000–U+3134F | 4,939 | Plane 3, added Unicode 13 |
| CJK Extension H | U+31350–U+323AF | 4,192 | Plane 3, added Unicode 15 |
| CJK Extension I | U+2EBF0–U+2EE5F | 622 | Added Unicode 15.1 |
| CJK Compatibility Ideographs | U+F900–U+FAFF | 512 | Compatibility (avoid) |
| CJK Radicals Supplement | U+2E80–U+2EFF | 128 | Dictionary radicals |
Total CJK ideographs across all extensions: over 90,000 as of Unicode 16.0.
Hanzi, Kanji, Hanja — One Code Point
The unification means that U+4E2D (中, "middle/China") is simultaneously: - Chinese: 中 (zhōng) - Japanese: 中 (naka/chū) - Korean: 중 (jung)
Which glyph is rendered depends on the font and language context. A Chinese font renders 中 in the standard Chinese style; a Japanese font renders it in the Japanese kanji style. The Unicode Standard includes a set of source separation rules that determined when two apparently similar ideographs should be unified versus kept separate.
CJK Radicals and Strokes
CJK ideographs are built from components called radicals (部首, bùshǒu). Unicode encodes:
- Kangxi Radicals (U+2F00–U+2FDF): 214 traditional radicals used in Chinese dictionaries
- CJK Radicals Supplement (U+2E80–U+2EFF): Alternative and simplified radical forms
- Stroke order: Not encoded in Unicode; defined by external standards per language
Working with CJK in Code
import unicodedata
char = "中"
print(unicodedata.name(char)) # CJK UNIFIED IDEOGRAPH-4E2D
print(unicodedata.category(char)) # Lo (Letter, other)
print(hex(ord(char))) # 0x4e2d
# CJK range check
def is_cjk_unified(char: str) -> bool:
cp = ord(char)
return 0x4E00 <= cp <= 0x9FFF # Core block only
def is_cjk_any(char: str) -> bool:
cp = ord(char)
ranges = [
(0x4E00, 0x9FFF), # Core
(0x3400, 0x4DBF), # Extension A
(0x20000, 0x2A6DF), # Extension B
(0x2A700, 0x2CEAF), # Extensions C-F
(0x30000, 0x3134F), # Extension G
]
return any(start <= cp <= end for start, end in ranges)
print(is_cjk_unified("中")) # True
print(is_cjk_unified("A")) # False
The Han Unification Controversy
Han unification remains controversial among East Asian scholars and users. Critics argue: - Unifying characters obscures important cultural and linguistic distinctions - Font selection should not determine meaning or provenance - Japanese and Chinese variants of the "same" ideograph can differ in stroke count and form
Defenders argue: - Most unified characters are genuinely identical in meaning and origin - Localization (font + language tags) correctly handles rendering differences - Encoding all variants separately would require tens of thousands more code points
The Unicode Standard's response: the CJK Compatibility Ideographs block (U+F900–U+FAFF) provides pre-unified code points for round-trip compatibility with East Asian legacy encodings. However, these are compatibility characters — they normalize to the unified forms under NFKC/NFKD.
Quick Facts
| Property | Value |
|---|---|
| CJK stands for | Chinese, Japanese, Korean |
| Core block | U+4E00–U+9FFF (~20,000 ideographs) |
| Total CJK ideographs (v16.0) | ~90,000+ across all extensions |
| Key decision | Han unification |
| Largest single extension | Extension B (42,720 in Plane 2) |
| Newest extension | Extension I (Unicode 15.1) |
| Script property in UCD | Han |
| Radical count (Kangxi) | 214 |
| Controversial aspect | Han unification merges national variants |
관련 용어
유니코드 표준의 더 많은 용어
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 …
평면 0(U+0000~U+FFFF)으로, 라틴, 그리스, 키릴, CJK, 아랍 문자 및 대부분의 기호 등 …
어느 유니코드 버전에서도 문자가 할당되지 않은 코드 포인트로, Cn(미할당)으로 분류됩니다. 향후 버전에서 …
평면 1~16(U+10000~U+10FFFF)으로, 이모지, 고대 문자, CJK 확장, 악보 등을 포함합니다. UTF-16에서는 서로게이트 …
내부 사용을 위해 영구 예약된 코드 포인트(총 66개): 각 평면의 U+FDD0~U+FDEF 및 …