Alphabet Reference

What Number Is A in the Alphabet? A = 1

AlphaCoder Team|May 23, 2026|5 min read

A is the 1st letter of the English alphabet. It holds position 1 in the standard A-to-Z ordering, making it the starting point for letter-to-number systems like the A1Z26 cipher. Whether you are solving a puzzle, learning to code, or studying cryptography, knowing that A = 1 is foundational. Use our letters to numbers converter to instantly convert any letter or word.

A in Every Number System

The letter A has different numeric representations depending on the encoding system:

SystemUppercase ALowercase a
Alphabet Position (A1Z26)11
ASCII Decimal6597
Hexadecimal0x410x61
Binary0100000101100001
Octal101141
Unicode (UTF-8)U+0041U+0061

You can verify all of these values using our alphabet number chart, which displays every letter with its position and encoding values.

Why A = 1 (The A1Z26 System)

The A1Z26 system assigns each letter its ordinal position in the alphabet: A = 1, B = 2, C = 3, all the way to Z = 26. This is the most intuitive numbering because it starts at 1 and counts up sequentially.

In contrast, ASCII (American Standard Code for Information Interchange) assigns A = 65 because the first 32 codes (0-31) are reserved for control characters, codes 32-47 are punctuation and symbols, and codes 48-57 are digits 0-9. Letters start at 65 by design, not by accident.

The A1Z26 cipher is widely used in escape rooms, geocaching puzzles, and children's secret codes. Our A1Z26 cipher tool lets you encode and decode messages using this system.

The History of the Letter A

The letter A has the longest traceable history of any letter in the English alphabet:

  • Proto-Sinaitic (c. 1800 BC): The letter originated as a pictograph of an ox head, called "aleph" (meaning "ox" in Semitic languages). The character looked like an upside-down A with two horns.
  • Phoenician (c. 1050 BC): The ox head was simplified and rotated. The Phoenician "aleph" looked like a sideways A and represented a glottal stop (a consonant sound).
  • Greek (c. 800 BC): The Greeks adopted the Phoenician alphabet and renamed the letter "alpha." Crucially, they repurposed it as a vowel sound (/a/) since Greek had different phonetic needs. They also flipped it upright to create the shape we recognize today.
  • Latin (c. 700 BC): The Romans adopted the Greek alphabet with minimal changes to A. The Latin A is essentially the form used in modern English.

The word "alphabet" itself comes from the first two Greek letters: alpha + beta. A has held the first position for over 3,000 years.

A in Programming

In every mainstream programming language, you can get the number for A using character arithmetic:

// JavaScript
"A".charCodeAt(0)           // 65 (ASCII)
"A".charCodeAt(0) - 64      // 1  (position)

# Python
ord('A')                     # 65
ord('A') - 64                # 1

// Java
(int) 'A'                    // 65
'A' - 'A' + 1                // 1

// C#
(int) 'A'                    // 65
'A' - 'A' + 1                // 1

The difference between uppercase A (65) and lowercase a (97) is always 32. This is by design in ASCII: toggling bit 5 (which has value 32) switches between cases.

A in Numerology

In numerology, A = 1, and the number 1 carries significance as a symbol of new beginnings, leadership, and independence. Names beginning with A are sometimes associated with pioneering energy and self-reliance. The word value of "A" itself is simply 1, the smallest non-zero word value possible.

Quick Reference: Letters Near A

LetterPositionASCII
A165
B266
C367
D468
E569

Look up any letter: Our Alphabet Number Chart shows the position, ASCII, hex, and binary for all 26 letters.

Try it now →

Frequently Asked Questions

What number is the letter A in the alphabet?

A is the 1st letter of the English alphabet. In the A1Z26 cipher system, A equals 1. In ASCII encoding, uppercase A is 65 and lowercase a is 97. The alphabet position (1) is the most commonly referenced value in puzzles and ciphers.

What is the ASCII value of the letter A?

Uppercase A has ASCII value 65, and lowercase a has ASCII value 97. The 32-point difference between uppercase and lowercase is consistent for all English letters in ASCII. This gap exists because bit 5 in the binary representation toggles the case.

What is the letter A in binary?

Uppercase A in binary is 01000001 (decimal 65). Lowercase a is 01100001 (decimal 97). The only difference between them is bit 5: it is 0 for uppercase and 1 for lowercase. This clever encoding trick makes case conversion a single bit-flip operation in computers.

Related Articles