| Nom du symbole | Hangul Syllable Guib |
| Version Unicode | 2.0 |
| Unicode | U+AE2A |
| Bloc Unicode | |
| Catégorie générale | Other Letter (Lo) |
| Code CSS | \AE2A |
| Code hexadécimal | 0xAE2A |
| Code HTML | 긪 |
| LaTeX | \hangul{AE2A} |
| Symbole | 긪 |
| Encodage URL (pourcent UTF-8) | %EA%B8%AA |
| Nom oral / lecteur d’écran | Hangul Syllable Guib |
| UTF-8 | EA B8 AA |
| UTF-16 | AE2A |
| UTF-32 | 0000AE2A |
1\documentclass{article}2\usepackage{pifont}3\hangul{AE2A}4\end{document}Vous pouvez saisir le symbole hangul syllable guib sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 44586 on Windows (numeric keypad with Num Lock), or insert via Character Map / Korean IME.
Edit → Emoji & Symbols, search "hangul syllable guib", or use Unicode Hex Input with AE2A.
Ctrl + Shift + U, type ae2a, 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-guib::before { content: "\AE2A"; font-family: "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", sans-serif; }1<span>긪</span>La représentation du symbole Hangul Syllable Guib dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\uAE2A' or String.fromCodePoint(44586) |
| Python | '\N{HANGUL SYLLABLE GUIB}' or chr(44586) |
| Rust | '\u{AE2A}' |
| C / C++ | UTF-8 source or wchar_t with U+AE2A |
| Go | string(rune(0xAE2A)) |
| Ruby | "\u{AE2A}" |