Invisible Text Symbols
Complete reference of all invisible and blank Unicode characters. Click any symbol to copy it, or use the Unicode/HTML codes in your code.
| Symbol Name | Copy | Unicode | HTML |
|---|---|---|---|
| Zero Width Space | U+200B | ​ | |
| Zero Width Non-Joiner | U+200C | ‌ | |
| Zero Width Joiner | U+200D | ‍ | |
| Hangul Filler | U+3164 | ㅤ | |
| Braille Blank | U+2800 | ⠀ | |
| Word Joiner | U+2060 | ⁠ | |
| Invisible Separator | U+2063 | ⁣ | |
| Invisible Plus | U+2064 | ⁤ | |
| Soft Hyphen | U+00AD | ­ | |
| No-Break Space | U+00A0 | | |
| Em Space | U+2003 |   | |
| Hair Space | U+200A |   |
In HTML/Web Pages
Use HTML entities in your web pages:
<!-- Zero Width Space -->
<span>​</span>
<!-- Non-breaking Space -->
<span> </span>
<!-- Hangul Filler -->
<span>ㅤ</span>In JavaScript
Use Unicode escape sequences:
// Zero Width Space
const zws = "\u200B";
// Hangul Filler
const hangul = "\u3164";
// Braille Blank
const braille = "\u2800";In CSS
Use Unicode in content property:
.invisible::before {
content: "\200B"; /* Zero Width */
}
.blank::before {
content: "\3164"; /* Hangul */
}In Python
Use Unicode escape sequences:
# Zero Width Space
zws = "\u200B"
# Hangul Filler
hangul = "\u3164"
# Or use chr()
invisible = chr(0x200B)About Invisible Text Symbols
What are invisible text symbols?
Invisible text symbols are Unicode characters that take up space but don't display any visible content. They include zero-width characters (that take no space) and blank characters (that take space but show nothing).
Which invisible symbol should I use?
It depends on your use case:
- Zero Width Space (U+200B) - Best for invisible text in most applications
- Hangul Filler (U+3164) - Best for visible blank spaces in games/social media
- Braille Blank (U+2800) - Alternative that works in many platforms
- Non-Break Space (U+00A0) - For preventing line breaks in HTML
Are these symbols safe to use?
Yes, these are all standard Unicode characters. However, some platforms may filter certain invisible characters. The Hangul Filler and Braille Blank tend to work most reliably across platforms.
How do I detect invisible characters in text?
Use our Remove Invisible Characters tool to detect and clean invisible characters from any text.