How this instrument works
A1Z26 is the simplest possible letter-number substitution scheme: A maps to 1, B to 2, and so on through Z at 26. This instrument runs that mapping in reverse — given a number, it returns the letter sitting at that position in the standard 26-letter Latin alphabet. There's no key or configuration involved; like its forward-direction counterpart, the mapping is completely fixed and identical every time.
Decoding numbers back to letters this way is a common step in puzzle hunts, geocaching clues, and escape rooms, where a message is often presented as a sequence of numbers that needs converting back to readable text one digit-group at a time. It's also a standard first example in introductory cryptography teaching, illustrating the basic mechanics of a substitution cipher before moving on to schemes with an actual secret key.
This instrument decodes one number at a time rather than accepting a whole sequence in one entry, and it only accepts numbers from 1 to 26, since those are the only positions that correspond to an actual letter of the alphabet — entering 0 or 27 has no valid single-letter answer under this cipher. To decode a full message, repeat the lookup for each number in the sequence, in order, and read the resulting letters back as a word.
One practical wrinkle worth knowing: because A1Z26 numbers can be one or two digits long (1 through 9, then 10 through 26), a coded message needs some kind of delimiter between numbers — commonly a hyphen, space, or comma — so a run of digits like '123' isn't ambiguous between being read as 1-2-3 (A-B-C) or 12-3 (L-C) or 1-23 (A-W).
- Enter Number (a value from 1 to 26).
- Read Letter for the letter sitting at that position in the alphabet.
- To decode a full coded message, repeat this for each number in the sequence, in order.
- Use this site's companion Letters to Numbers instrument to convert the opposite direction, from a letter back to a number.
Worked example — decoding the number 5
A geocaching clue presents a coded phrase as a hyphen-separated sequence of numbers, and the first number in that sequence is 5. Entering 5 into Number, Letter reads E — the fifth letter of the alphabet, since A=1, B=2, C=3, D=4, and E=5.
If the full clue continued with more numbers after the 5, each one would get looked up the same way in turn, and reading the resulting letters back in order would spell out the hidden word or phrase the clue was encoding — exactly the kind of simple number-to-letter decoding A1Z26 puzzles rely on.
Questions
What is the A1Z26 cipher, run in reverse?
A1Z26 maps each letter of the alphabet to its position within it — A=1, B=2, and so on through Z=26. Running that mapping in reverse means starting from a number and recovering the letter it stands for, which is exactly what this instrument does: enter any number from 1 to 26 and get back the corresponding letter, the same fixed, keyless mapping used throughout puzzle hunts and geocaching clues built on this cipher.
Does this tool decode a whole coded message at once?
No — it decodes one entered number at a time. To decode a full message presented as a sequence of numbers, look up each number in turn, in the order it appears, and read the resulting letters back together to reconstruct the original word or phrase.
What happens if I try to enter 0 or 27?
Neither has a valid answer under the A1Z26 cipher, since the alphabet only has 26 letters, numbered 1 through 26 — there's no letter at position 0 or position 27. This instrument restricts valid input to that 1-26 range for exactly that reason; a number outside it simply doesn't correspond to any single letter.
How do I know where one number ends and the next begins in a coded message?
A1Z26 numbers range from 1 to 26, meaning some are a single digit and others are two digits, so a raw run of digits is genuinely ambiguous without a separator — for instance, '123' could be read as 1-2-3 (A-B-C), 12-3 (L-C), or 1-23 (A-W). Puzzle and geocaching conventions almost always insert a clear delimiter, most commonly a hyphen, space, or comma, between individual numbers to avoid exactly this ambiguity.
How do I convert a letter back into a number?
Use this site's companion Letters to Numbers instrument, which applies the identical A1Z26 mapping in the opposite direction: select a letter from A to Z and it returns the matching number, so selecting E returns 5, mirroring this tool's number-to-letter direction exactly.