Tested tool guide
Tested browser tools
Checked August 16, 2026
What ROT13 / ROT47 Encoder does, with a checked example
ROT13 and ROT47 are rotation ciphers: each character shifts a fixed number of places within a fixed alphabet, 13 through the 26 letters or 47 through the 94 printable ASCII characters. Paste text and the shift applies immediately, with a toggle choosing between the two schemes. Because 13 is half of 26 and 47 is half of 94, running the cipher twice restores the original text, so the encode and decode buttons perform exactly the same operation. The surprise: this is not encryption. There is no key, and anyone who recognizes the scheme can decode the text by hand.
Worked example
A concrete input and expected output from the current implementation.
Input
Hello, World! (ROT13 mode)
->
Expected output
Uryyb, Jbeyq!
Each letter moves 13 places forward in the alphabet, wrapping around: H becomes U, e becomes r, and so on. Commas, spaces and the exclamation mark are not letters, so ROT13 leaves them untouched, and re-applying the same transformation restores the original. Switching to ROT47 instead yields "w6==@ [(@C=5P", because that scheme also scrambles digits and punctuation.