พื้นที่ใช้งานส่วนตัว
ช่วงที่สงวนไว้สำหรับให้องค์กรกำหนดอักขระของตนเอง: BMP PUA (U+E000–U+F8FF) บวกกับ Supplementary PUA ในระนาบ 15 และ 16
What is the Private Use Area?
The Private Use Area (PUA) refers to three ranges of Unicode code points that are permanently reserved for applications to define their own characters. Unlike most of the Unicode code space, PUA code points will never be assigned official characters by the Unicode Consortium. Instead, any organization can use them for proprietary characters — custom icons, corporate logos, game symbols, or glyphs not yet in Unicode.
There are three PUA regions in Unicode:
| Name | Range | Size |
|---|---|---|
| BMP Private Use Area | U+E000–U+F8FF | 6,400 code points |
| Supplementary Private Use Area A | U+F0000–U+FFFFF | 65,534 code points |
| Supplementary Private Use Area B | U+100000–U+10FFFF | 65,534 code points |
Total: 137,468 code points — by far the largest reserved region in Unicode.
How the PUA is Used
Because PUA code points have no standard meaning, their interpretation is entirely up to the parties exchanging the text. This requires both sides to agree on a mapping — typically through a custom font that maps PUA code points to specific glyphs.
Common use cases:
-
Icon fonts — Font Awesome, Material Icons, and similar libraries map their icons to PUA code points (e.g., U+F000+ for Font Awesome). The font renders the PUA code point as the intended icon.
-
Corporate logo characters — Companies sometimes use PUA slots for brand marks in specialized documents.
-
Pre-standardization characters — Klingon, Tengwar (Tolkien's Elvish script), and other scripts not yet in Unicode have community-defined PUA assignments (the ConScript Unicode Registry, CSUR).
-
Regional/historic writing systems — Script communities waiting for official Unicode approval use the PUA for interoperability within their community.
The Interoperability Problem
PUA usage is inherently non-interoperable across different applications or organizations unless
both use the same font and the same mapping. A PUA code point U+E001 might be a "thumbs up"
icon in one font and a currency symbol in another. When text with PUA characters is exchanged
between systems using different fonts, the result is meaningless glyphs.
# PUA code points have no official name
import unicodedata
cp = 0xE001 # PUA code point
try:
name = unicodedata.name(chr(cp))
except ValueError as e:
print(e) # no such name
category = unicodedata.category(chr(cp))
print(category) # "Co" (Private Use)
PUA in Emoji History
Before emoji were standardized in Unicode 6.0 (2010), Japanese mobile carriers (DoCoMo, KDDI, SoftBank) each used their own PUA encodings for emoji. DoCoMo used the range U+E63E–U+E757; SoftBank used a different range. This is why early cross-carrier emoji were garbled — each carrier had a different PUA mapping. Unicode 6.0 unified these into standardized code points.
Detecting PUA Characters
import unicodedata
def is_pua(char: str) -> bool:
return unicodedata.category(char) == "Co"
print(is_pua("\uE001")) # True (BMP PUA)
print(is_pua("\U000F0001")) # True (Supplementary PUA A)
print(is_pua("A")) # False
Common Pitfalls
Assuming PUA characters are portable: Never embed PUA characters in data exchanged with external systems without documenting the required font/mapping.
Font Awesome characters in databases: Storing Font Awesome PUA icons in a database works only if the rendering system also uses Font Awesome. On different systems, PUA values appear as blank boxes or unrelated glyphs.
Quick Facts
| Property | Value |
|---|---|
| BMP PUA range | U+E000–U+F8FF |
| Supplementary PUA A | U+F0000–U+FFFFF |
| Supplementary PUA B | U+100000–U+10FFFF |
| Total PUA code points | 137,468 |
| General category | Co (Private Use) |
| Official character assignment | Never — permanently private |
| Common use | Icon fonts (Font Awesome, Material Icons) |
| Registry for scripts | CSUR (ConScript Unicode Registry) |
คำศัพท์ที่เกี่ยวข้อง
เพิ่มเติมใน มาตรฐาน Unicode
ระนาบ 0 (U+0000–U+FFFF) ประกอบด้วยอักขระที่ใช้บ่อยที่สุด ได้แก่ Latin, Greek, Cyrillic, CJK, Arabic และสัญลักษณ์ส่วนใหญ่ อักขระในระนาบนี้พอดีกับหนึ่งหน่วยรหัส …
จีน ญี่ปุ่น และเกาหลี คำรวมสำหรับบล็อกอักษรจีน Han ที่รวมกันและอักษรที่เกี่ยวข้องใน Unicode CJK Unified Ideographs มีอักขระมากกว่า 20,992 …
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) ที่ซิงโครไนซ์กับ Unicode กำหนดชุดอักขระและจุดรหัสเดียวกัน แต่ไม่มีอัลกอริธึมและคุณสมบัติเพิ่มเติมของ Unicode
มาตรฐานการเข้ารหัสอักขระสากลที่กำหนดหมายเลขเฉพาะ (จุดรหัส) ให้กับทุกอักขระในทุกระบบการเขียน เวอร์ชัน 16.0 มีอักขระที่กำหนดแล้ว 154,998 ตัว
คอลเลกชันไฟล์ข้อมูลที่อ่านได้ด้วยเครื่องซึ่งกำหนดคุณสมบัติอักขระ Unicode ทั้งหมด รวมถึง UnicodeData.txt, Blocks.txt, Scripts.txt และอื่นๆ
Normative or informative documents that are integral parts of the Unicode Standard. …
Informational documents published by the Unicode Consortium covering specific topics like security …
จุดรหัสใดๆ ยกเว้นจุดรหัส surrogate (U+D800–U+DFFF) ชุดค่าที่ถูกต้องซึ่งสามารถแทนอักขระจริงได้ รวมทั้งสิ้น 1,112,064 ค่า