A1Z26 Letter-Number Cipher Translator
Type text above and each letter converts to its position in the alphabet: A becomes 1, B becomes 2, all the way to Z as 26 — the name A1Z26 is literally a shorthand for "A is 1, Z is 26." It's less a formal cipher standard than a puzzle-and-scavenger-hunt convention, popular precisely because it needs no chart to explain and almost no chart to solve, which also makes it one of the weakest ciphers here for anything beyond casual fun.
How the Numbers Are Usually Separated
Because letter positions range from a single digit (1-9) to two digits (10-26), a run of numbers with no separator is genuinely unreadable without extra information. This tool separates each letter's number with a space by default, which is the most common convention in puzzles and escape rooms — "CAB" becomes "3 1 2", not "312", precisely to avoid the ambiguity a squashed-together string creates.
The Ambiguity Problem: What Does "112" Actually Mean?
Without spaces, "112" has at least three valid readings: 1-1-2 (AAB), 11-2 (KB), or 1-12 (AL). A human solver usually resolves this by trying each reading against a dictionary and keeping whichever produces real words, but that's pattern-matching against language, not a mechanical decoding rule — there's no purely mathematical way to know which split the original writer intended from the digits alone. This is exactly why building an automatic reverse (numbers-to-letters) converter is a harder problem than it first looks: a real one either has to require the space-separated format this tool already produces, or has to run the same dictionary-matching guesswork a human does, and guess wrong on genuinely ambiguous short strings no matter how good the guessing logic is.
A Worked Example: "PUZZLE"
P is the 16th letter, U is 21st, Z is 26th (and appears twice), L is 12th, E is 5th — so "PUZZLE" becomes "16 21 26 26 12 5". Notice both Z's produce the same two-digit number, which is expected: A1Z26 is a straight positional substitution with no variation for repeated letters, unlike a proper cipher that might deliberately avoid that kind of repeating pattern.
Where A1Z26 Actually Shows Up
- Escape rooms and puzzle hunts, usually as one layer of a multi-step puzzle rather than the entire challenge, since it's too quick to solve alone to hold a room's attention for long.
- Numerology and "name number" content online, which sums a name's A1Z26 values for entertainment purposes with no cryptographic basis.
- Scouting and school cipher-and-codes activities, as an easy first example before introducing a real substitution or shift cipher.
- Song lyrics and album art, occasionally used by musicians to hide a short message or title in liner notes as a fan-discoverable easter egg.
The Reverse Direction: Numbers Back to Letters
Switch to "Numbers to Letters" above to decode in the other direction. Space, hyphen or comma-separated numbers (like "3 1 2") decode directly with no ambiguity. Paste in a raw, unseparated run of digits instead (like "112"), and rather than silently guessing, the tool enumerates every valid reading — 1-1-2 (AAB), 11-2 (KB) and 1-12 (AL) for that example — so you can pick the one that actually makes a real word, exactly the way a human solver would.
Frequently Asked Questions
Is A1Z26 considered a real cipher by cryptographers, or just a puzzle convention?
It's a genuine simple substitution in the technical sense — each letter maps to a fixed symbol, here a number — but it offers essentially no security, since the entire mapping is guessable on sight by anyone who knows the alphabet. It's used almost exclusively for recreational puzzles, not for protecting real information.
Does A1Z26 treat uppercase and lowercase letters differently?
No — the numbering is based purely on alphabetical position, so "a" and "A" both convert to 1. Case is not part of the encoding, unlike some ciphers where capitalization can carry its own meaning.
What happens to spaces and punctuation in the original text?
This converter passes word breaks through as a visible gap in the output between number groups, and drops punctuation, since neither has a defined numeric value in the A1Z26 scheme — it only assigns numbers to the 26 letters.