| Symbol Name | Hangul Syllable Yeo |
| Unicode Version | 2.0 |
| Unicode | U+C5EC |
| Unicode block | |
| General category | Other Letter (Lo) |
| CSS Code | \C5EC |
| Hex Code | 0xC5EC |
| HTML Code | 여 |
| LaTeX | \hangul{C5EC} |
| Symbol | 여 |
| URL encode (UTF-8 percent) | %EC%97%AC |
| Spoken / screen reader name | 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}You can type the hangul syllable yeo symbol on most modern devices with the help of following methods:
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>Hangul Syllable Yeo symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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}" |