U+3164 Hangul Filler

Unicode Name: Hangul Filler

Hangul Filler is a character that looks empty and is often used for invisible text tricks like sending blank messages, though it was originally created as a placeholder for Korean syllables.

Shortcodes

Copy useful codes for u+3164 hangul filler symbol ㅤ to use in websites, apps, blogs, and docs.

Unicode
U+3164
HTML Code
ㅤ
HEX Code
ㅤ
CSS Code
\3164
JS/JSON
\u3164
Unix/C/PHP/JAVA
0x3164
URL-encode
%E3%85%A4

Customize U+3164 Hangul Filler

Customize ㅤ, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use U+3164 Hangul Filler Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>ㅤ</span>
HTML Code:
<span>&#12644;</span>
HEX Code:
<span>&#x3164;</span>

Add with CSS

.3164-hangul-filler::before {
  content: '\\3164';
}

Set it in JavaScript

document.querySelector('.3164-hangul-filler').textContent = 'ㅤ';
copied