Tested tool guide
Tested browser tools
Checked August 15, 2026
What Caesar Cipher with Brute-Force does, with a checked example
This tool shifts each letter of the alphabet by a fixed number of positions, wrapping from Z back to A, to encrypt or decrypt text with the classical Caesar cipher. Enter text and a shift value (0-25) to transform it directly, or paste ciphertext with an unknown shift and use brute-force mode, which lists all 26 possible rotations side by side so you can spot the one that reads as plain English. The detail people miss: a shift of 13 is ROT13, and a shift of 0 or 26 returns the original text unchanged.
Worked example
A concrete input and expected output from the current implementation.
Input
Plaintext: HELLO, shift: 3, mode: encrypt
->
Each letter moves 3 positions forward in the alphabet: H to K, E to H, L to O (twice), and O to R, wrapping past Z if needed.