- Why does my invisible name disappear when I paste it?
- Most chat platforms run trim() on usernames and bios before saving — that strips leading and trailing whitespace, and the zero-width characters (U+200B, U+200C, U+200D, U+2060) often count as whitespace to the regex. The two characters that survive trimming reliably are Hangul Filler (U+3164) and Braille Pattern Blank (U+2800) — both are technically printable Unicode, not whitespace, so trim() leaves them alone. If a single Hangul Filler still gets stripped, the platform's validator may be checking for a minimum visible width; bump the quantity to 3 or 5 and try again.
- Which character should I pick?
- Default to Hangul Filler (U+3164) — it's what every Discord and TikTok tutorial uses, and it survives almost every input validator because it's a real Korean character that happens to render as blank in most fonts. Pick Braille Pattern Blank (U+2800) if Hangul Filler is being rejected by a more aggressive validator (some games and some older forum software). The four zero-width characters are for a different job entirely: inserting an invisible break inside an existing word, not making the whole field look empty.
- What's the difference between zero-width space, joiner, and non-joiner?
- All three are invisible and zero-width, but they have different roles in text rendering. Zero-Width Space (U+200B) marks a place where a line break is allowed but no visible character is drawn — used to make long URLs wrap. Zero-Width Joiner (U+200D) is what holds compound emoji together (👨👩👧 is three people joined by two ZWJs). Zero-Width Non-Joiner (U+200C) is the opposite — it prevents two characters from forming a ligature, used heavily in Persian and Hindi typesetting. Word Joiner (U+2060) is the modern no-break-here mark, replacing the deprecated U+FEFF.
- Is this safe? Will my Discord account get banned?
- Using a Hangul Filler or Braille Blank as a display name violates Discord's Community Guidelines if the intent is impersonation or evading moderation — using it just because you like the look is fine and tens of thousands of accounts do it. Discord's automated tooling does not flag invisible-name accounts in isolation. The risk is the surrounding behavior, not the character itself. Don't use an invisible name to dodge a ban, impersonate staff, or hide spam, and you'll be fine.
- Does the tool send my clicks to anyone?
- No. The invisible character lives in a constant inside the page. When you click Copy, the character is written to your clipboard via the browser's clipboard API — nothing is sent over the network, nothing is logged, and the page itself is static HTML on a CDN. No backend, no analytics fired on the click, no signup.
- Why does prepostseo's version have so many ads?
- Their page is the same Unicode characters you're copying here, wrapped in four banner ad slots, a sticky bottom ad, and a 14-day free-trial popup for their SEO tools subscription. The invisible characters cost nothing to ship — every other element on that page is monetizing the search demand. This page does the same job and skips the marketing layer.
- Will the character paste into Word, Google Docs, or my email?
- Yes. All six characters are standard Unicode codepoints and every modern text editor (Word, Google Docs, Pages, TextEdit, Notion, Gmail, Outlook, Apple Mail) handles them without complaint. The display behavior depends on the font — most sans-serif fonts render Hangul Filler and Braille Blank as a blank space the width of a normal character, while the four zero-width chars render at zero width everywhere. If a document looks wrong after pasting, switch to a font that's known to handle the full Unicode plane (Arial, Helvetica, Noto Sans).
- Can I use these in a password?
- Technically yes, but don't. Most password fields apply Unicode normalization (NFC or NFKC) before hashing, which can collapse or alter zero-width characters in ways you won't notice on entry but that will break login on a different device. If you want a password with hidden complexity, generate a long random string with a real password generator instead.