Using this tool is straightforward: type or paste any text into the input area. Select either ROT13 (shifts only letters A-Z, a-z by 13 positions) or ROT47 (shifts all printable ASCII characters 33–126 by 47 positions). The output updates instantly. Click Copy Output to copy the result, and Clear All to reset both fields. Perfect for quick encoding, decoding, or puzzle solving.
ROT13 (rotate by 13 places) is a simple Caesar cipher that replaces a letter with the 13th letter after it in the alphabet. It's its own inverse: applying ROT13 twice returns the original text. For example, 'A' becomes 'N', 'B' → 'O', and 'Hello' becomes 'Uryyb'. ROT13 is often used to hide spoilers, game hints, or mild obfuscation without actual encryption. It only affects alphabetic characters; digits, punctuation, and spaces remain unchanged.
ROT47 is an extension of the ROT13 cipher that rotates all visible ASCII characters from 33 (!) to 126 (~) by 47 positions. This includes numbers, symbols, uppercase/lowercase letters, and punctuation. ROT47 is useful for obfuscating more complex strings like code snippets, email addresses, or any text with special characters. For instance, 'TextTool' becomes '%6I%@@=K' under ROT47, making it harder to read at a glance. Like ROT13, applying it twice restores the original.
ROT ciphers are not secure encryption but serve many practical purposes: hiding puzzle answers, preventing accidental spoilers, creating quick obfuscation for forum posts, learning basic cryptography concepts, and protecting email addresses from simple bots. They are lightweight, fast, and widely supported.