Tested tool guide
Text and writing tools
Checked August 16, 2026
What Invisible Character Detector & Remover does, with a checked example
Paste any text and this tool lists every character that occupies a code point without showing a glyph: zero-width spaces, the byte-order mark, soft hyphens, bidi marks and similar. Each find is reported with its code point, official Unicode name and occurrence count, and one pass can strip them all out. The surprise for most users is that these are not formatting glitches or font artifacts: they are real characters that your editor stores faithfully, which is exactly why searches, validators and comparisons keep failing on text that looks identical to the eye.
Worked example
A concrete input and expected output from the current implementation.
Input
This is a\u200B test.
->
Expected output
Found 1 invisible character: U+200B ZERO WIDTH SPACE, 1 occurrence, immediately after the 'a'. Cleaned text (15 characters): This is a test.
The \u200B escape denotes a real U+200B zero-width space pasted between 'a' and the following space. It renders as nothing, so the input and the cleaned output look identical; the only observable difference is the character count, which drops from 16 to 15.