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