Skip to main content
DevTools24

ROT13 Cipher

Encode and decode text using ROT13 or custom Caesar cipher rotations. ROT13 is self-reversing - apply it twice to get the original.

A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
N O P Q R S T U V W X Y Z A B C D E F G H I J K L M
About Caesar Cipher:
  • ROT13: Shift by 13, self-reversing (encode = decode)
  • • Each letter is replaced by one that is N positions down the alphabet
  • • Non-alphabetic characters (numbers, symbols, spaces) are preserved
  • • Named after Julius Caesar who used it for secret correspondence
  • • Not secure for actual encryption - only for obfuscation/fun

ROT13 - Technische Details

ROT13 shifts each letter by 13 positions in the alphabet. Since there are 26 letters, applying ROT13 twice returns the original text. It was commonly used to hide spoilers in forums.

Kommandozeilen-Alternative

# Using tr command
echo 'Hello World' | tr 'A-Za-z' 'N-ZA-Mn-za-m'

# Using Python
python3 -c "import codecs; print(codecs.encode('Hello', 'rot_13'))"