Click me!
LLMTFY
starikov.co/easter-egg-hunt
Nothing to see here.
Click the translucent pill (blue dot marks it) or the big Copy button.
The zero‑width space (U+200B) is a Unicode glyph that renders nothing and occupies zero width. In the right hands, this “invisible ink” changes how software treats text.
Below are seven tricks I actually use, each with a quick demo.
Newsletter ← with ZWS
Apple
Zucchini
hello@starikov.co
https://starikov.co
int total = 1; // normal
int total = 2; // looks the same, compiles fine
std::cout << total + total; // prints 3
def hello():
print("ok") # four spaces
print("boom") # four + ZWS → IndentationError
Hide Easter‑Egg Text
Insert a binary watermark every 100 chars; humans never see it, diff tools do.
Zero‑Length Social Forms
Some platforms allow a username, bios, and other forms that is literally just ZWS. Pure minimalism.
Control word‑wrapping
Add ZWS inside a super‑long URL to let browsers break the line without inserting a visible hyphen.
<span style="word-break:break-all">
https://example.com/superlongpaththatneverends
</span>