ROT13 Tool
How to Use: Enter your text into the first textarea. Click "Convert" to see the ROT13 output in the second textarea.
ROT13(L) = (L + 13) mod 26
L = letter number (A=0, B=1, ..., Z=25)
Applying twice returns the original text
ROT13 shifts each letter 13 places forward. If you pass Z, it wraps around to A. Doing it twice recovers the original text.
ROT13 History
ROT13 became popular in early internet culture because it was a simple way to hide text from casual viewing without giving any real security. Early online communities — especially on platforms like Usenet and bulletin boards — used ROT13 to hide spoilers, answers, or offensive text from users unless they deliberately decoded it. Unlike full‑strength cryptography, ROT13 is just a specific case of a Caesar shift by 13, chosen because shifting by half the alphabet means applying it twice gets the original text back — a convenience in tools and scripts.