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