Reference

What Number Is Each Letter of the Alphabet?

AlphaCoder Team|May 24, 2026|7 min read

Every letter of the English alphabet has a corresponding position number from 1 to 26. A is 1, B is 2, and so on until Z which is 26. This mapping is the foundation of the A1Z26 cipher and is used in everything from classroom exercises to geocaching puzzles to word value calculations. This page provides the complete reference chart along with memory techniques, conversion tips, and common applications.

The Complete Alphabet-Number Chart

LetterNumberLetterNumber
A1N14
B2O15
C3P16
D4Q17
E5R18
F6S19
G7T20
H8U21
I9V22
J10W23
K11X24
L12Y25
M13Z26

Anchor Letter Memory System

You do not need to memorize all 26 positions. Instead, memorize these seven anchor letters and count forward or backward from the nearest one:

AnchorPositionMemory Trick
A1First letter, first number
E5High five for E
J10J has 10 (think "Jackpot 10")
M13M is the Middle (13 of 26)
P16P = "sweet sixteen"
T20T for Twenty
Z26Last letter, number 26

Using Anchors: Examples

  • What number is G? Nearest anchor is E=5. G is 2 after E. So G = 5+2 = 7.
  • What number is R? Nearest anchor is T=20. R is 2 before T. So R = 20-2 = 18.
  • What number is W? Nearest anchor is T=20. W is 3 after T. So W = 20+3 = 23.
  • What number is L? Nearest anchor is M=13. L is 1 before M. So L = 13-1 = 12.
  • What number is N? Nearest anchor is M=13. N is 1 after M. So N = 13+1 = 14.

With practice, you can find any letter's position in under three seconds using this system.

Commonly Asked Letter Positions

Based on search data, these are the most frequently searched letter positions:

  • What number is A? A = 1 (the first letter)
  • What number is M? M = 13 (the middle letter)
  • What number is Z? Z = 26 (the last letter)
  • What number is L? L = 12
  • What number is S? S = 19
  • What number is R? R = 18
  • What number is T? T = 20
  • What number is N? N = 14

Reverse Lookup: Number to Letter

Going from number to letter follows the same table in reverse:

NumberLetterNumberLetter
1A14N
2B15O
3C16P
4D17Q
5E18R
6F19S
7G20T
8H21U
9I22V
10J23W
11K24X
12L25Y
13M26Z

Word Value Calculations

The word value is the sum of all letter positions in a word. This concept appears in math puzzles, numerology, word games, and competitive Scrabble analysis.

WordCalculationValue
CAT3 + 1 + 2024
DOG4 + 15 + 726
HELLO8 + 5 + 12 + 12 + 1552
WORLD23 + 15 + 18 + 12 + 472
PYTHON16 + 25 + 20 + 8 + 15 + 1498
CIPHER3 + 9 + 16 + 8 + 5 + 1859

Calculate any word's value instantly

Case Sensitivity

In the standard alphabet position system, uppercase and lowercase letters have the same position number. Both A and a equal 1. Both Z and z equal 26. This is different from ASCII, where A=65 and a=97.

The Math Behind It

In programming and spreadsheets, the position of any letter can be calculated using its ASCII/Unicode code:

// For uppercase letters (ASCII 65-90):
position = ASCII_code - 64

// For lowercase letters (ASCII 97-122):
position = ASCII_code - 96

// In various languages:
# Python:  ord('A') - 64 = 1
# JS:      'A'.charCodeAt(0) - 64 = 1
# Excel:   =CODE("A") - 64 = 1

Historical Context

The English alphabet has had 26 letters since the early 16th century, when J was distinguished from I and U was distinguished from V. Before that, the alphabet had only 24 letters, and positional numbering would have mapped differently. The A1Z26 system as we know it (with exactly 26 positions) is therefore a relatively modern convention, even though the concept of assigning numbers to letters dates back thousands of years to Hebrew gematria and Greek isopsephy.

Related Systems

  • A0Z25 (Zero-indexed): A=0, B=1, C=2, through Z=25. Used in some mathematical and computing contexts where zero-indexing is standard.
  • Reversed (Z1A26): Z=1, Y=2, X=3, through A=26. Used in Atbash-style puzzles.
  • ASCII: A=65, B=66, through Z=90 (uppercase). The computing standard for character encoding.
  • Excel column system: Same as A1Z26 for single letters, but extends beyond 26: AA=27, AB=28, AZ=52, BA=53, and so on.

Convert any text instantly: Use our A1Z26 Converter to encode or decode messages using alphabet positions. Free, instant, and private.

Frequently Asked Questions

How many letters are in the English alphabet?

The modern English alphabet has exactly 26 letters: A through Z. This has been standard since approximately 1524 when J was formally distinguished from I. The positions run from A=1 to Z=26 with no gaps.

What letter is the middle of the alphabet?

With 26 letters, there is no single middle letter. The two middle positions are 13 (M) and 14 (N). M is often used as the "middle anchor" because it is easier to remember M=13 (M for "middle").

Do other languages use the same numbering?

No. Each language's alphabet has a different number of letters and therefore different position assignments. The Spanish alphabet includes the letter N with tilde. The German alphabet has umlauts and the eszett. The French alphabet uses the same 26 base letters as English but has accented variants. A1Z26 specifically refers to the 26-letter English alphabet.

What is the highest word value possible?

The highest single-letter value is Z=26. For common English words, "PIZZA" (16+9+26+26+1=78) and "FUZZY" (6+21+26+26+25=104) score high. Theoretically, a word composed entirely of Z's would have the highest value per letter (26 per character). The word "ZZZZ" (not a real word) would equal 104.

Why is A equal to 1 and not 0?

The A1Z26 system uses 1-based indexing because it follows human counting convention: the first item is "1", not "0". Programming languages often use 0-based indexing (A=0 in the A0Z25 variant), but for puzzles and education, starting at 1 is more intuitive. There is no letter at position 0 in A1Z26.

Related Articles