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