Tested tool guide
Tested browser tools
Checked August 16, 2026
What ROT13 Converter does, with a checked example
ROT13 is a substitution cipher that shifts every letter 13 places through the alphabet, wrapping from Z back to A. The tool also offers ROT5, which does the same half-turn for digits 0-9, and ROT47, which shifts the 94 printable ASCII characters instead. The surprise for most users is that the shift is exactly half the character set, so applying the tool twice restores the original text: the same button encodes and decodes. The other surprise is that ROT47 is not ROT13 plus ROT5 - it turns letters into punctuation, not into the ROT13 result. And none of the three is encryption; a fixed-shift cipher is trivially breakable.
Worked example
A concrete input and expected output from the current implementation.
->
Expected output
Uryyb, Jbeyq!
Each letter moves 13 places forward through the alphabet, wrapping past Z: H becomes U, e becomes r, and so on, while the comma, space, and exclamation mark pass through unchanged and case is preserved. Shift 13 places again and Uryyb, Jbeyq! becomes Hello, World! again, because ROT13 is its own inverse.