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