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