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