Alphabet Number Chart — A=1 to Z=26 Reference

Complete reference chart showing every letter's position number, ASCII code, binary, hex, and Unicode code point. Perfect for puzzles, programming, and education.

LetterA1Z26A0Z25ReversedASCII (Upper)ASCII (Lower)BinaryHexUnicode
Aa102665970100000141U+0041
Bb212566980100001042U+0042
Cc322467990100001143U+0043
Dd4323681000100010044U+0044
Ee5422691010100010145U+0045
Ff6521701020100011046U+0046
Gg7620711030100011147U+0047
Hh8719721040100100048U+0048
Ii9818731050100100149U+0049
Jj1091774106010010104AU+004A
Kk11101675107010010114BU+004B
Ll12111576108010011004CU+004C
Mm13121477109010011014DU+004D
Nn14131378110010011104EU+004E
Oo15141279111010011114FU+004F
Pp161511801120101000050U+0050
Qq171610811130101000151U+0051
Rr18179821140101001052U+0052
Ss19188831150101001153U+0053
Tt20197841160101010054U+0054
Uu21206851170101010155U+0055
Vv22215861180101011056U+0056
Ww23224871190101011157U+0057
Xx24233881200101100058U+0058
Yy25242891210101100159U+0059
Zz2625190122010110105AU+005A

Understanding Alphabet-to-Number Systems

Mapping letters to numbers is one of the oldest and most fundamental concepts in cryptography, mathematics, and computing. The simplest mapping — A=1, B=2, C=3, ... Z=26 — is known as the A1Z26 cipher or positional numbering. It forms the basis of countless puzzles, educational exercises, and encoding systems. This chart provides a comprehensive reference for the most common letter-number mapping systems used today.

The chart above shows eight different numerical representations for each letter. A1Z26 is the standard one-based position (A=1). A0Z25 is the zero-based position used in programming (A=0). Reversed counts from the end (A=26, Z=1). ASCII shows the American Standard Code for Information Interchange values for both uppercase and lowercase letters. Binary shows the 8-bit representation. Hexadecimal shows the base-16 value. Unicode shows the standard code point notation.

A1Z26: The Puzzle Standard

The A1Z26 system is the default alphabet-to-number mapping in puzzles worldwide. When a geocaching puzzle, escape room clue, or cipher challenge presents a sequence of numbers between 1 and 26, A1Z26 is almost always the first decoding method to try. The sequence "8 5 12 12 15" instantly becomes "HELLO" to anyone familiar with the system. Its simplicity makes it accessible to children while still serving as the foundation for more complex cryptographic concepts.

ASCII: The Computing Standard

ASCII (American Standard Code for Information Interchange) was established in 1963 and assigns 7-bit numerical values to 128 characters. Uppercase letters occupy codes 65-90, lowercase letters occupy 97-122, digits 0-9 occupy 48-57, and various punctuation and control characters fill the remaining slots. The 32-position gap between uppercase and lowercase letters (A=65, a=97) is deliberately designed — toggling bit 5 converts between cases, which simplifies case conversion in hardware and software.

Binary: The Machine Language

Every character stored in a computer is ultimately represented as a sequence of binary digits (bits). The binary column in the chart shows how each letter's ASCII code appears in the machine's native language. Notice the patterns: all uppercase letters start with "010" and all lowercase letters start with "011," reflecting the systematic design of ASCII. The final five bits encode the letter's position (A=00001, B=00010, C=00011, etc.), making the connection between binary and A0Z25 numbering visually apparent.

Practical Uses of This Chart

Puzzle solving: Keep this chart handy when working on geocaching mysteries, escape room challenges, scavenger hunts, or cryptography puzzles. The A1Z26 column is your primary reference for standard letter-number conversions. Programming: The ASCII and A0Z25 columns are essential references for string manipulation, character encoding, and low-level text processing. Education: Teachers use alphabet-number charts to teach number systems, introduce binary and hexadecimal, and demonstrate the relationship between different bases.

Quick mental math tip: To quickly find any letter's A1Z26 number, remember that the alphabet divides into two halves at M (13) and N (14). For letters A-M, count from the start. For letters N-Z, remember N=14 and count from there. Another useful anchor: E=5, J=10, O=15, T=20. These four landmarks let you quickly estimate any letter's position without counting from A each time.

Frequently Asked Questions

Related Tools