Hangul Filler (U+3164) | The Invisible Korean Character Explained
Learn what Hangul Filler (U+3164) is, how to use it, and where it works best. Copy the invisible Korean character for usernames, bios, and formatting.
What Is Hangul Filler (U+3164)?
Hangul Filler (U+3164) is a unique Unicode character from the Korean writing system. It looks completely invisible but technically counts as a valid character. This means platforms and apps treat it like real text even though nothing appears on screen.
Originally, it was designed as a placeholder in Korean text input systems. It helped maintain proper spacing and structure in Hangul character blocks. Over time, people found creative ways to use it far beyond its original purpose.
Here is what makes it useful today:
- Placeholder character in Korean text input systems
- Invisible spacer for formatting and alignment
- Compatibility support for older Korean computing systems
Where People Use It Most
Hangul Filler has become popular for everyday tricks across apps, games, and social platforms. Here are the most common uses:
- Blank social media bios on Instagram, Twitter, and Discord
- Invisible usernames in games like Fortnite, Steam, and Roblox
- Bypassing required text fields in apps that do not accept empty input
Technical Specifications
| Property | Value |
|---|---|
| Unicode Code Point | U+3164 |
| HTML Entity | ㅤ |
| JavaScript Escape | \u3164 |
| Unicode Category | Other Letter (Lo) |
| Visibility | Invisible (renders as blank) |
How to Use Hangul Filler
There are a few ways to type or insert the Hangul Filler character depending on your device and what you are trying to do. Let us walk through each method.
Copy and Paste Method (Easiest)
This is the fastest way. Simply copy the character between the quotes below and paste it wherever you need it.
Copy this: "ㅤ" (highlight and copy the space between the quotes)
This works on phones, tablets, and computers. No special tools needed.
Keyboard Input Methods
- Windows Korean IME: This character is not directly typable through the standard Korean keyboard
- Mac Korean Input: Also not available through direct keyboard input
- Best option: Use the copy and paste method above or enter it through character codes
Manual Entry for Developers
- Windows: Press
Alt + 12644using the number pad - Mac: Switch to Unicode Hex Input, then press
Option + 3164 - HTML: Type
ㅤdirectly in your code
Using It in Code
If you are a developer, you can insert Hangul Filler in HTML and JavaScript like this:
HTML Example:
VisibleㅤText
JavaScript Example:
const text = "Hidden" + "\u3164" + "Text";
Practical Applications
Beyond the basics, Hangul Filler has some genuinely useful applications in development and design. Here are real examples you can use right away.
Text Field Placeholders
You can use it as invisible placeholder text in form inputs:
document.getElementById("username").placeholder = "Enter\u3164name";
Formatting and Alignment
Need invisible spacing in your HTML layout? Hangul Filler can help create gaps without visible characters:
<p>LeftㅤㅤㅤRight</p>
This creates invisible spacing between two words without using regular spaces or padding.
Stealth Names in Games and Chat
Want a username that looks completely blank? Stack multiple Hangul Fillers together:
const stealthName = "\u3164\u3164\u3164";
This creates text that appears empty but passes character validation on most platforms.
Hangul Filler vs Similar Invisible Characters
Hangul Filler is not the only invisible character in Unicode. Here is how it compares to other commonly used ones:
| Character | Unicode | Visible | Best Used For |
|---|---|---|---|
| Hangul Filler | U+3164 | No | Korean text processing and blank names |
| Zero Width Space | U+200B | No | Word breaking and text separation |
| Ideographic Space | U+3000 | Yes (wide space) | CJK text formatting and spacing |
The key difference is that Hangul Filler is classified as a letter, not a space. This is why many platforms accept it in fields where regular spaces or zero width characters get rejected.
Things to Keep in Mind
Before you start using Hangul Filler everywhere, there are a few things worth knowing.
Font and Display Issues
- Some fonts may show it as a small blank box instead of true invisible space
- Certain apps and platforms automatically strip or block this character
- Display can vary between devices so always test before relying on it
Tips for Best Results
- Always test how the character renders on different platforms and browsers before going live
- In web development, pair it with
white-space: prein CSS to make sure spacing stays consistent - Use it sparingly because overuse can create unexpected text parsing or search issues
- Keep in mind that some platforms update their filters regularly and may block it in the future