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