| Nom du symbole | Hangul Syllable Eonh |
| Version Unicode | 2.0 |
| Unicode | U+C5BA |
| Bloc Unicode | |
| Catégorie générale | Other Letter (Lo) |
| Code CSS | \C5BA |
| Code hexadécimal | 0xC5BA |
| Code HTML | 얺 |
| LaTeX | \hangul{C5BA} |
| Symbole | 얺 |
| Encodage URL (pourcent UTF-8) | %EC%96%BA |
| Nom oral / lecteur d’écran | Hangul Syllable Eonh |
| UTF-8 | EC 96 BA |
| UTF-16 | C5BA |
| UTF-32 | 0000C5BA |
1\documentclass{article}2\usepackage{pifont}3\hangul{C5BA}4\end{document}Vous pouvez saisir le symbole hangul syllable eonh sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 50618 on Windows (numeric keypad with Num Lock), or insert via Character Map / Korean IME.
Edit → Emoji & Symbols, search "hangul syllable eonh", or use Unicode Hex Input with C5BA.
Ctrl + Shift + U, type c5ba, 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-eonh::before { content: "\C5BA"; font-family: "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", sans-serif; }1<span>얺</span>La représentation du symbole Hangul Syllable Eonh dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\uC5BA' or String.fromCodePoint(50618) |
| Python | '\N{HANGUL SYLLABLE EONH}' or chr(50618) |
| Rust | '\u{C5BA}' |
| C / C++ | UTF-8 source or wchar_t with U+C5BA |
| Go | string(rune(0xC5BA)) |
| Ruby | "\u{C5BA}" |