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