| Nombre del símbolo | Hangul Syllable Ess |
| Versión Unicode | 2.0 |
| Unicode | U+C5EA |
| Bloque Unicode | |
| Categoría general | Other Letter (Lo) |
| Código CSS | \C5EA |
| Código hexadecimal | 0xC5EA |
| Código HTML | 엪 |
| LaTeX | \hangul{C5EA} |
| Símbolo | 엪 |
| Codificación URL (porcentaje UTF-8) | %EC%97%AA |
| Nombre oral / lector de pantalla | Hangul Syllable Ess |
| UTF-8 | EC 97 AA |
| UTF-16 | C5EA |
| UTF-32 | 0000C5EA |
1\documentclass{article}2\usepackage{pifont}3\hangul{C5EA}4\end{document}Puedes escribir el símbolo hangul syllable ess en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 50666 on Windows (numeric keypad with Num Lock), or insert via Character Map / Korean IME.
Edit → Emoji & Symbols, search "hangul syllable ess", or use Unicode Hex Input with C5EA.
Ctrl + Shift + U, type c5ea, 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-ess::before { content: "\C5EA"; font-family: "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", sans-serif; }1<span>엪</span>La representación del símbolo Hangul Syllable Ess en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\uC5EA' or String.fromCodePoint(50666) |
| Python | '\N{HANGUL SYLLABLE ESS}' or chr(50666) |
| Rust | '\u{C5EA}' |
| C / C++ | UTF-8 source or wchar_t with U+C5EA |
| Go | string(rune(0xC5EA)) |
| Ruby | "\u{C5EA}" |