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