Detect and clean hidden characters (ZWSP/ZWJ/ZWNJ/FEFF) and bidi controls (LRM/RLM/LRE/RLE/…); visualise, normalise and export.
const userName = "Admin";
const hidden = "hello\u200Bworld";
const mixed = "A\u200FBC";
const userName = "Admin";
const hidden = "helloworld";
const mixed = "ABC";
Visualise and remove invisibles, normalise Unicode, and export clean text for safe code and content.
Label ZWSP/ZWNJ/ZWJ/FEFF/LRM/RLM/… inline for quick auditing
Remove zero-width and bidi controls; replace NBSP with space
Apply NFC/NFD/NFKC/NFKD normalisation safely