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