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