Letters to Numbers Converter

Non-alphabetic characters will be filtered out. Uncheck the filter to preserve them (they will encode as "0").
Encoded Result

Enter text above to see the encoded result

A letters‑to‑numbers converter is a versatile tool that performs text‑to‑numbers conversion by mapping alphabetic characters to numeric codes under a chosen scheme. From the classic A1Z26 letter‑number cipher—where A=1, B=2, … Z=26—to the zero‑based A0Z25 mapping, from the ASCII/Unicode code points used by computers to the familiar T9 telephone keypad mapping, these encoding methods bridge alphabetic and numeric worlds. Puzzle solvers, escape room enthusiasts, cryptography learners, and anyone curious about historical ciphers can benefit from experimenting with these mappings. Whether you need to decode a secret message, solve a puzzle, or simply encode letters to numbers, this article covers the most popular systems and shows how an online converter can produce the numeric output instantly.

Letter Position Ciphers (A1Z26, A0Z25, Reversed)

The most straightforward way to turn letters into numbers is to assign each letter its ordinal position in the alphabet. In the A1Z26 cipher the mapping is:

A=1,  B=2,  C=3,  …,  Z=26A=1,\; B=2,\; C=3,\; \dots,\; Z=26

The zero‑based variant, often called the A0Z25 converter, shifts the assignment so that:

A=0,  B=1,  C=2,  …,  Z=25A=0,\; B=1,\; C=2,\; \dots,\; Z=25

A reversed pattern flips the order: A=26,  B=25,  …,  Z=1A=26,\; B=25,\; \dots,\; Z=1.
The table below summarises the letter‑to‑number relationships for A1Z26 and A0Z25, along with the ASCII decimal codes for uppercase letters.

LetterA1Z26A0Z25ASCII (uppercase)
A1065
B2166
C3267
D4368
E5469
F6570
G7671
H8772
I9873
J10974
K111075
L121176
M131277
N141378
O151479
P161580
Q171681
R181782
S191883
T201984
U212085
V222186
W232287
X242388
Y252489
Z262590

For example, the word “CIPHER” encoded with A1Z26 becomes 3, 9, 16, 8, 5, 18; with A0Z25 it becomes 2, 8, 15, 7, 4, 17. In the reversed alphabet “CIPHER” translates to 24, 18, 11, 19, 22, 9. Spaces are typically assigned the value 0 in A1Z26 and A0Z25, making them easy to handle. These encodings work with any alphabet that has a natural order; the tool supports Latin, Greek, Cyrillic, Hebrew, and Arabic scripts.

Computer Character Encodings (ASCII, Hex, Binary)

Beyond alphabetical position, computers rely on standardised numeric codes. ASCII (American Standard Code for Information Interchange) assigns a unique decimal number to each character. Uppercase letters use the values 65 (A) through 90 (Z); lowercase letters occupy 97–122. Take the word “Code” as an example:

  • C → 67
  • o → 111
  • d → 100
  • e → 101

So “Code” in decimal ASCII reads 67 111 100 101.

Hexadecimal ASCII expresses the same code point in base‑16. The hexadecimal representation of “Code” is 43 6F 64 65.

Binary ASCII shows each code point as an 8‑bit binary string:

  • 67 → 01000011
  • 111 → 01101111
  • 100 → 01100100
  • 101 → 01100101

Thus “Code” in binary ASCII becomes 01000011 01101111 01100100 01100101. These formats are essential for debugging, data transmission, and low‑level programming.

Telephone Keypad Mapping (T9)

Before touchscreens, mobile phones used a numeric keypad where several letters shared a single digit. This T9 keypad converter mapping is still widely used for phonewords and puzzle encoding. The standard mapping is:

KeyLetters
2ABC
3DEF
4GHI
5JKL
6MNO
7PQRS
8TUV
9WXYZ

To convert a word to telephone numbers, replace each letter with its corresponding key digit. For example, “CIPHER” maps to 2‑4‑7‑4‑3‑7, i.e., 247437. The mapping ignores case, and spaces are usually omitted. This system is used for memorable phone numbers (e.g., 1‑800‑FLOWERS) and appears in many logic puzzles.

How to Use a Letters‑to‑Numbers Converter

Operating an online alphabet to numbers converter is straightforward:

  1. Input text – Type or paste the characters you want to encode.
  2. Select encoding scheme – Choose one of A1Z26, A0Z25, reversed, ASCII, hex ASCII, binary ASCII, or telephone (T9).
  3. Pick the alphabet (if applicable) – Select Latin, Greek, Cyrillic, Hebrew, Arabic, or another supported script.
  4. Read the result – The numeric output is displayed instantly as you type or after clicking a button.

If you need the reverse operation (numbers back to letters), a dedicated numbers‑to‑letters converter can decode the sequences using the same mapping rules.

FAQ

1. How do I convert letters to numbers using the A1Z26 cipher?

Assign each letter its position in the alphabet: A=1, B=2, C=3, … Z=26. For example, C becomes 3, A becomes 1, T becomes 20. A converter set to A1Z26 will automatically produce the numeric sequence for any input text, treating spaces as 0.

2. What is the difference between the A1Z26 and A0Z25 systems?

The only difference is the starting point. A1Z26 begins at A=1, while A0Z25 begins at A=0. Both follow the same alphabetical order, so the numeric output for A0Z25 is always one less than the A1Z26 value (e.g., C=3 in A1Z26 and C=2 in A0Z25).

3. How can I find the ASCII decimal value of a letter?

Select the ASCII encoding option. Uppercase letters have decimal codes 65 (A) through 90 (Z); lowercase letters range from 97 (a) to 122 (z). Typing a word will show each character's decimal code, e.g., A=65, B=66.

4. How does the T9 telephone keypad mapping work for letters?

Each letter is assigned to a digit key based on the traditional mobile layout: 2=ABC, 3=DEF, 4=GHI, 5=JKL, 6=MNO, 7=PQRS, 8=TUV, 9=WXYZ. To convert a word, replace each letter with its key digit. For instance, 'CIPHER' becomes 2-4-7-4-3-7 (247437).

5. Can the converter handle non‑Latin alphabets?

Yes, the tool supports several alphabets besides Latin, including Greek, Cyrillic, Hebrew, and Arabic. The letter‑position mappings (A1Z26, A0Z25, reversed) follow the natural order of the selected script, so you can encode characters from different writing systems into numbers.

How to Use

  1. Type or paste your text into the input field.
  2. Select an encoding method - A1Z26, A0Z25, Reversed, T9, ASCII, Hex, or Binary.
  3. The encoded result appears instantly. Click the copy button to use it.