Windows – How to type U+200B character

charactersunicodewindows

How can I type the unicode character U+200B (zero-width space character) with my keyboard?

Best Answer

When using recent versions of Chrome/Chromium, you can use its console to copy the character to clipboard:

copy("\u200B")         // works for BMP characters only (U+0000 to U+FFFF)
copy("\u{200B}")       // works for all characters (U+0000 to U+10FFFF)

copy(String.fromCodePoint(0x200B))