| Symbol Name | Hangul Syllable Eng |
| Unicode Version | 2.0 |
| Unicode | U+C5EB |
| Unicode block | |
| General category | Other Letter (Lo) |
| CSS Code | \C5EB |
| Hex Code | 0xC5EB |
| HTML Code | 엫 |
| LaTeX | \hangul{C5EB} |
| Symbol | 엫 |
| URL encode (UTF-8 percent) | %EC%97%AB |
| Spoken / screen reader name | Hangul Syllable Eng |
| UTF-8 | EC 97 AB |
| UTF-16 | C5EB |
| UTF-32 | 0000C5EB |
1\documentclass{article}2\usepackage{pifont}3\hangul{C5EB}4\end{document}You can type the hangul syllable eng symbol on most modern devices with the help of following methods:
Alt + 50667 on Windows (numeric keypad with Num Lock), or insert via Character Map / Korean IME.
Edit → Emoji & Symbols, search "hangul syllable eng", or use Unicode Hex Input with C5EB.
Ctrl + Shift + U, type c5eb, 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-eng::before { content: "\C5EB"; font-family: "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", sans-serif; }1<span>엫</span>Hangul Syllable Eng symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\uC5EB' or String.fromCodePoint(50667) |
| Python | '\N{HANGUL SYLLABLE ENG}' or chr(50667) |
| Rust | '\u{C5EB}' |
| C / C++ | UTF-8 source or wchar_t with U+C5EB |
| Go | string(rune(0xC5EB)) |
| Ruby | "\u{C5EB}" |