Numbers to Letters Converter

Convert numbers to letters and letters to numbers using A=1, Z=26 mapping. Supports phone keypad, ASCII, and custom cipher offset conversions.

Result
HELLO
Decoded text
Characters Processed
5
Total input elements
Unique Numbers
4
Distinct values in input
Encoding
A=1, Z=26
Using A1Z26 encoding scheme
Words Decoded
1
Words separated by 0 or spaces
Method
Decoding
A1Z26 cipher numbers to letters

Character Breakdown

#NumberLetter
18H
25E
312L
412L
515O

A1Z26 Reference

LetterA1Z26ASCIILetterA1Z26ASCII
A165N1478
B266O1579
C367P1680
D468Q1781
E569R1882
F670S1983
G771T2084
H872U2185
I973V2286
J1074W2387
K1175X2488
L1276Y2589
M1377Z2690
Planning notes, formulas, and examples

About the Numbers to Letters Converter

The Numbers to Letters Converter translates between numeric values and alphabetic characters using multiple encoding schemes. The most common is the A=1, B=2, ... Z=26 system (known as the A1Z26 cipher), which is widely used in puzzles, geocaching, escape rooms, cryptography education, and number-letter codes. It also helps when the same sequence needs to be read in a different mapping.

Beyond the basic A1Z26 mapping, this converter supports phone keypad mapping (where 2=ABC, 3=DEF, etc.), ASCII code conversion (A=65), Unicode values, and custom cipher offsets for more complex encodings. You can convert in either direction—numbers to letters or letters to numbers—and process entire messages at once.

This converter is invaluable for puzzle enthusiasts, escape room designers, cryptography students, and anyone working with coded messages. It handles space-separated numbers for decoding, comma-separated values, and continuous digit strings with configurable parsing. The tool also includes a complete reference table and supports both uppercase and lowercase letters.

When This Page Helps

Quickly decode number-letter puzzles, create coded messages, or convert between schemes such as A1Z26, keypad mapping, and ASCII.

It is useful because the same numeric string can mean very different things depending on the encoding. Showing the scheme choice explicitly makes puzzle solving, classroom demos, and quick code-table checks much less error-prone, especially when you are switching between decoding styles.

How to Use the Inputs

  1. Enter numbers (space or comma separated) to convert to letters, or enter text to convert to numbers
  2. Select the encoding scheme: A1Z26, Phone Keypad, ASCII, or Custom Offset
  3. Choose the conversion direction: Numbers → Letters or Letters → Numbers
  4. For custom offset mode, set your starting value (e.g., A=0 or A=65)
  5. View the complete conversion with a character-by-character breakdown
  6. Use the reference table to look up individual conversions
Formula used
A1Z26: Letter = (number - 1) + charCode("A"), Number = charCode(letter) - charCode("A") + 1. Phone: standard T9 mapping. ASCII: Letter = String.fromCharCode(number). Custom: Letter = (number - offset) + charCode("A").

Example Calculation

Result: HELLO

8=H, 5=E, 12=L, 12=L, 15=O. Each number maps to the corresponding position in the alphabet (A=1 through Z=26).

Tips & Best Practices

  • For A1Z26 decoding, separate numbers with spaces or commas—"8 5 12 12 15" decodes to HELLO
  • The sum of all letter values in the alphabet (A=1 to Z=26) is 351
  • Common words have recognizable number patterns: THE = 20-8-5, AND = 1-14-4
  • For phone keypad mode, repeated digits select the position: 2=A, 22=B, 222=C
  • Use ASCII mode (A=65) for programming and computer science applications

The A1Z26 Cipher in Puzzle Culture

The A1Z26 cipher is a cornerstone of puzzle design. Escape rooms frequently use it as one layer of multi-step puzzles, geocaching coordinates are sometimes encoded this way, and puzzle books include A1Z26 challenges regularly. Its simplicity makes it accessible to beginners while still requiring careful attention to avoid errors, especially with two-digit numbers that could be ambiguous (is "12" = L, or "1,2" = A,B?).

Phone Keypad Encoding (T9)

Before smartphones, T9 (Text on 9 keys) was the standard input method for text messages. Each number 2-9 mapped to 3-4 letters, and you pressed the key multiple times to cycle through letters. This mapping is still used in emergency codes, automated phone systems, and nostalgic puzzle designs. The memorable phrase "CALL ME" becomes 2-2-5-5-6-3 in single-press T9.

Cryptography Foundations

Number-letter substitution is the simplest form of cryptography and serves as a gateway to more complex techniques. From the A1Z26 cipher, students progress to Caesar shifts (fixed offset), Vigenère ciphers (variable offsets), and eventually modern encryption. Understanding the fundamentals of letter-to-number mapping is essential for anyone studying information security or mathematics.

Sources & Methodology

Last updated:

Frequently Asked Questions

  • The A1Z26 cipher is a simple substitution where A=1, B=2, C=3, ... Z=26. It's one of the simplest ciphers and is commonly used in puzzles, escape rooms, and as a teaching tool for cryptography basics.