| Nome del simbolo | Hangul Syllable Eng |
| Versione Unicode | 2.0 |
| Unicode | U+C5EB |
| Blocco Unicode | |
| Categoria generale | Other Letter (Lo) |
| Codice CSS | \C5EB |
| Codice esadecimale | 0xC5EB |
| Codice HTML | 엫 |
| LaTeX | \hangul{C5EB} |
| Simbolo | 엫 |
| Codifica URL (percentuale UTF-8) | %EC%97%AB |
| Nome parlato / screen reader | 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}Puoi digitare il simbolo hangul syllable eng sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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>La rappresentazione del simbolo Hangul Syllable Eng nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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}" |