| Nombre del símbolo | Hangul Filler |
| Versión Unicode | 1.1 |
| Unicode | U+3164 |
| Bloque Unicode | |
| Categoría general | Other Letter (Lo) |
| Código CSS | \3164 |
| Código hexadecimal | 0x3164 |
| Código HTML | ㅤ |
| LaTeX | \hangul{3164} |
| Símbolo | ㅤ |
| Codificación URL (porcentaje UTF-8) | %E3%85%A4 |
| Nombre oral / lector de pantalla | 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}Puedes escribir el símbolo hangul filler en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Hangul Filler en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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}" |