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