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