| Nom du symbole | Hangul Syllable Gilb |
| Version Unicode | 2.0 |
| Unicode | U+AE3B |
| Bloc Unicode | |
| Catégorie générale | Other Letter (Lo) |
| Code CSS | \AE3B |
| Code hexadécimal | 0xAE3B |
| Code HTML | 긻 |
| LaTeX | \hangul{AE3B} |
| Symbole | 긻 |
| Encodage URL (pourcent UTF-8) | %EA%B8%BB |
| Nom oral / lecteur d’écran | 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}Vous pouvez saisir le symbole hangul syllable gilb sur la plupart des appareils modernes avec les méthodes suivantes :
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 représentation du symbole Hangul Syllable Gilb dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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}" |