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