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