| Nome del simbolo | Hangul Syllable Geumh |
| Versione Unicode | 2.0 |
| Unicode | U+AE0D |
| Blocco Unicode | |
| Categoria generale | Other Letter (Lo) |
| Codice CSS | \AE0D |
| Codice esadecimale | 0xAE0D |
| Codice HTML | 긍 |
| LaTeX | \hangul{AE0D} |
| Simbolo | 긍 |
| Codifica URL (percentuale UTF-8) | %EA%B8%8D |
| Nome parlato / screen reader | Hangul Syllable Geumh |
| UTF-8 | EA B8 8D |
| UTF-16 | AE0D |
| UTF-32 | 0000AE0D |
1\documentclass{article}2\usepackage{pifont}3\hangul{AE0D}4\end{document}Puoi digitare il simbolo hangul syllable geumh sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 44557 on Windows (numeric keypad with Num Lock), or insert via Character Map / Korean IME.
Edit → Emoji & Symbols, search "hangul syllable geumh", or use Unicode Hex Input with AE0D.
Ctrl + Shift + U, type ae0d, 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-geumh::before { content: "\AE0D"; font-family: "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", sans-serif; }1<span>긍</span>La rappresentazione del simbolo Hangul Syllable Geumh nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\uAE0D' or String.fromCodePoint(44557) |
| Python | '\N{HANGUL SYLLABLE GEUMH}' or chr(44557) |
| Rust | '\u{AE0D}' |
| C / C++ | UTF-8 source or wchar_t with U+AE0D |
| Go | string(rune(0xAE0D)) |
| Ruby | "\u{AE0D}" |