| Nom du symbole | Hangul Syllable Cheon |
| Version Unicode | 2.0 |
| Unicode | U+CC9C |
| Bloc Unicode | |
| Catégorie générale | Other Letter (Lo) |
| Code CSS | \CC9C |
| Code hexadécimal | 0xCC9C |
| Code HTML | 천 |
| LaTeX | \hangul{CC9C} |
| Symbole | 천 |
| Encodage URL (pourcent UTF-8) | %EC%B2%9C |
| Nom oral / lecteur d’écran | Hangul Syllable Cheon |
| UTF-8 | EC B2 9C |
| UTF-16 | CC9C |
| UTF-32 | 0000CC9C |
1\documentclass{article}2\usepackage{pifont}3\hangul{CC9C}4\end{document}Vous pouvez saisir le symbole hangul syllable cheon sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 52380 on Windows (numeric keypad with Num Lock), or insert via Character Map / Korean IME.
Edit → Emoji & Symbols, search "hangul syllable cheon", or use Unicode Hex Input with CC9C.
Ctrl + Shift + U, type cc9c, then Enter (layout-dependent), or use an IBus Hangul table.
Paste from this page, use text replacement, or pick from the Korean keyboard.
Paste from this page or use a keyboard with Hangul support.
1span.korean-syllable-cheon::before { content: "\CC9C"; font-family: "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", sans-serif; }1<span>천</span>La représentation du symbole Hangul Syllable Cheon dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\uCC9C' or String.fromCodePoint(52380) |
| Python | '\N{HANGUL SYLLABLE CHEON}' or chr(52380) |
| Rust | '\u{CC9C}' |
| C / C++ | UTF-8 source or wchar_t with U+CC9C |
| Go | string(rune(0xCC9C)) |
| Ruby | "\u{CC9C}" |