| Nombre del símbolo | Hangul Syllable Goenj |
| Versión Unicode | 2.0 |
| Unicode | U+AD39 |
| Bloque Unicode | |
| Categoría general | Other Letter (Lo) |
| Código CSS | \AD39 |
| Código hexadecimal | 0xAD39 |
| Código HTML | 괹 |
| LaTeX | \hangul{AD39} |
| Símbolo | 괹 |
| Codificación URL (porcentaje UTF-8) | %EA%B4%B9 |
| Nombre oral / lector de pantalla | 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}Puedes escribir el símbolo hangul syllable goenj en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Hangul Syllable Goenj en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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}" |