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