Password Generator
Password Generator computed locally with Web Crypto — your secrets never leave the page.
Apply ROT13 to any text — the letter-rotation that is its own undo — right in your browser. Great for hiding spoilers in plain sight, but it is not encryption.
Your browser is preparing the tool. It runs 100% locally.
Type text and the tool returns its ROT13 version — every letter shifted 13 places along the alphabet, so A becomes N, B becomes O, and so on. Because 13 is exactly half of 26, applying ROT13 again turns it back: the same operation encodes and decodes. Digits, spaces and punctuation are left untouched. It is perfect for hiding spoilers or answers in plain sight, but it offers no security at all. It runs entirely in your browser.
This tool transforms text with ROT13, rotating each letter 13 positions through the alphabet while leaving everything that is not a letter as it is. The result looks scrambled but is trivially readable to anyone who applies ROT13 again.
It is the classic way to hide text that you do not mind being revealed — a film spoiler, a joke's punchline, a quiz answer — so that a reader has to make a deliberate choice to decode it rather than seeing it by accident.
ROT13 is a Caesar cipher with a fixed shift of 13. Each letter is moved 13 places forward, wrapping around the end of the alphabet, so A to M map onto N to Z and vice versa. Case is preserved, and any character that is not a letter — a number, space or symbol — passes through unchanged.
The neat property is that 13 plus 13 is 26, a full loop of the alphabet. So encoding and decoding are the same action: run ROT13 on ROT13 text and you are back where you started. That is why the tool needs only one button and no key.
for each letter: new = (position − base + 13) mod 26 + base
(base is A for capitals, a for lowercase; non-letters unchanged)
ROT13 of ROT13 = the original — same operation both waysHello World → Uryyb Jbeyq → Hello WorldA becomes N, M becomes Z, N becomes A. Because 13 is half of 26, encoding and decoding are identical — there is no key and no secret.
The transformation is exact and standard, so ROT13 here matches ROT13 anywhere, and decoding is guaranteed because the operation is its own inverse.
It only affects the 26 letters of the basic Latin alphabet. Numbers are unchanged (a variant called ROT5 rotates digits, and ROT47 covers more characters, but this tool is plain ROT13), and accented or non-Latin letters pass through untouched.
It provides zero confidentiality. The whole point is that anyone can decode it in a second, so treat ROT13 text as effectively public — it merely stops casual, accidental reading.
Case and formatting are preserved, so the output keeps the shape of the input. That makes it readable as scrambled text but also means word lengths and punctuation still leak the structure of the message.
Encode a plot twist or ending so readers reveal it on purpose.
Post a quiz or puzzle answer that is not visible at a glance.
Keep a punchline or surprise out of plain sight in a forum post.
See a Caesar-style substitution and its self-inverse in action.
ROT13 is obfuscation only. For genuine confidentiality, use real encryption with a key. For a different shift, use the Caesar cipher tool; to hide a value casually, ROT13 is fine — just never rely on it for security.
Rotates each letter 13 places, the same operation in both directions; honest that ROT13 is obfuscation for spoilers and puzzles, with no security whatsoever.
Password Generator computed locally with Web Crypto — your secrets never leave the page.
Use Password Strength Checker for stronger security hygiene — private, instant and free.
Random Number Generator computed locally with Web Crypto — your secrets never leave the page.
SHA-256 Hash Generator computed locally with Web Crypto — your secrets never leave the page.
Passphrase Generator computed locally with Web Crypto — your secrets never leave the page.
Use MD5 Hash Generator for stronger security hygiene — private, instant and free.
It is free, private and runs entirely in your browser — no sign-up, no uploads, no limits.