Spin the Wheel — Live Cipher
This is a real, working cipher wheel. Drag the inner wheel to rotate it and set your Key. Then type a message below and watch it encrypt instantly.
⟁ Interactive Cipher Wheel
What This Is
Before computers existed, generals, spies, and inventors still needed to send secret messages. To do this, they used encryption — scrambling a message so only someone with the right "key" could read it.
One of the oldest tools for this is a Cipher Wheel — a mechanical calculator running a Shift Cipher algorithm. This is the very same method Julius Caesar reportedly used to send military orders over 2,000 years ago, which is why this exact technique is still called a Caesar cipher today.
The Real Math — Read This Carefully
A full circle is 360°. Dividing evenly by our 26 letters:
This rounds to about 13.85° per letter — and that decimal matters more than it looks. If you round down to "every 14°" and mark your protractor by repeatedly adding 14° to the last mark, you'll drift. By the 26th mark you'll have traveled 364°, not 360°. Your wheel won't close evenly — there'll be a visible gap where Z bumps into A.
Why This Code Can Be Broken
A shift cipher is one of the easiest codes in the world to crack, even without knowing the Key. In English, some letters show up far more often than others — the letter E appears more than any other letter in nearly every English sentence. If someone counts which letter appears most in your encrypted message, that letter is very likely your encrypted version of E.
This is called frequency analysis, a real codebreaking technique used for over a thousand years. Try it below on your own encrypted message.
⟁ Frequency Analysis Tool
Type a longer message above for a clearer pattern — short messages won't show frequency trends reliably.
The Full Module — Reading Mode
What This Is
Before computers existed, generals, spies, and inventors still needed to send secret messages. To do this, they used encryption — scrambling a message so that only someone with the right key could read it. One of the oldest tools for this is a Cipher Wheel: a mechanical calculator that runs a Shift Cipher algorithm, the same method Julius Caesar reportedly used to send military orders over 2,000 years ago, which is why this technique is still called a Caesar cipher today.
An algorithm is just a step-by-step recipe for solving a problem. Here, the rule is to shift every letter in a message a certain number of spaces down the alphabet. Instead of doing this math in your head for every letter, you're going to engineer a physical machine to do the calculating for you.
The Concept
When you encrypt a message using a shift cipher, you replace the real letters with fake ones. If your secret Key is to shift the alphabet by 3 spaces, "A" becomes "D," "B" becomes "E," "C" becomes "F" — so the word "CAB" becomes "FDE." If someone finds your message, it looks like gibberish. But if your friend knows your Key is 3, they simply shift the letters 3 spaces backwards to read "CAB." Modern computers do this billions of times a second using massive numbers, but the core idea is exactly the same: an input, a mathematical rule, and an output.
The Clock of Letters
Imagine a clock on the wall with numbers 1 to 12, and a smaller spinning circle of numbers placed right on top of it. If you turn the inner circle so its "1" lines up with the outer clock's "3," you've created a physical shift. A cipher wheel works exactly the same way, but instead of 12 hours, the circle is divided into the 26 letters of the alphabet.
The Real Math
A full circle is 360°. Dividing evenly by 26 letters gives 360 ÷ 26 = 13.846 repeating degrees, which rounds to about 13.85° per letter. That small decimal matters more than it looks like it should. If a builder rounds down to "every 14°" and marks a protractor by repeatedly adding 14° to the previous mark, the error compounds: by the 26th mark, the total travels 364°, not 360°. The wheel won't close evenly, leaving a visible gap where Z meets A instead of sitting flush beside it.
The fix is to calculate each letter's position from a single 0° starting point every time, rather than adding to the last mark. This stops small rounding errors from stacking into one large visible mistake — the same kind of bug that affects real programmers and engineers, just at a much larger scale than a cardboard wheel.
Why This Code Can Be Broken
A shift cipher is one of the easiest codes in the world to crack, even without knowing the Key, because some letters show up far more often than others in English — the letter E appears more than any other letter in nearly every English sentence. If someone intercepts an encrypted message and counts which letter appears most often, that letter is very likely the encrypted version of E. From there, the code starts to unravel. This is called frequency analysis, a real technique codebreakers have used for over a thousand years, and it's exactly why modern computer encryption uses far more complex math specifically designed to resist this kind of pattern-spotting. Understanding why a shift cipher is breakable is the real point of this project — it's the first step toward understanding what makes modern encryption strong.
The Arts-as-Attention Pass
Testing the algorithm isn't the end of the project — documenting it for someone else is. A locked message is useless if a friend doesn't have the instructions to unlock it. Choose a Key by turning the inner wheel so its A lines up with a different outer letter. Encrypt a short message by finding each letter on the inner wheel and writing down whatever outer letter sits in the same position. Then create a one-page Field Guide explaining how to align the Key and decrypt the message — written clearly enough that a family member can use it without any verbal explanation at all.
Field Engineering: Step by Step
Build It For Real
Materials and full checklist for the physical cardboard build.
Materials
Cumulative Degree Reference Table
Every angle is measured from your single 0° line, not from the previous mark.
| Letter | ° | Letter | ° | Letter | ° | Letter | ° |
|---|---|---|---|---|---|---|---|
| A | 0.0 | H | 96.9 | O | 193.8 | U | 276.9 |
| B | 13.8 | I | 110.8 | P | 207.7 | V | 290.8 |
| C | 27.7 | J | 124.6 | Q | 221.5 | W | 304.6 |
| D | 41.5 | K | 138.5 | R | 235.4 | X | 318.5 |
| E | 55.4 | L | 152.3 | S | 249.2 | Y | 332.3 |
| F | 69.2 | M | 166.2 | T | 263.1 | Z | 346.2 |
| G | 83.1 | N | 180.0 |
Complete Project Checklist
Phase 1 — Mathematics & Building
- Two circles cut out of cardboard (one large, one small)
- 0° reference line drawn on both circles
- 360° divided by 26 to find the true sector size (13.85°, not rounded to 14°)
- All 26 letter positions marked using the cumulative reference table
- 26 equal slices drawn on both circles using protractor and ruler
- Letters A–Z written clearly on both wheels
- Wheels joined in the center, spinning smoothly with no visible gap at Z/A
Phase 2 — Testing & Encrypting
- A secret Key alignment chosen
- A short message encrypted using the wheel
- The encrypted message written down clearly on paper
- Frequency analysis tried — did the most common letter match E?
Phase 3 — The Arts-as-Attention (Documentation)
- A User Manual written for the receiver
- A diagram drawn showing how to line up the Key
- Instructions included on reading the wheel backwards to decrypt
- Tested successfully by a family member or friend