Gaming Codes

Alphabet Codes: ASCII, Binary, and NATO Phonetic Charts

A complete reference for converting letters into ASCII, binary, and NATO phonetic alphabet codes.

A complete reference for converting letters into ASCII, binary, and NATO phonetic alphabet codes.

Every letter of the alphabet can be represented in more than one way once you move past plain text. Computers store letters as numeric ASCII values and binary strings, radio operators spell letters aloud using standardized code words, and classroom coding exercises often layer in Morse code, sign language, or hieroglyphic symbols. Knowing how these systems map to A through Z makes it possible to decode messages, troubleshoot character encoding, or communicate clearly over a noisy radio channel.

ASCII and binary codes for capital letters (A to Z)

Capital letters A through Z occupy ASCII decimal values 65 through 90. Each value also has a 7-bit binary equivalent, which is what a computer actually stores and processes.

LetterASCII codeBinary code
A651000001
B661000010
C671000011
D681000100
E691000101
F701000110
G711000111
H721001000
I731001001
J741001010
K751001011
L761001100
M771001101
N781001110
O791001111
P801010000
Q811010001
R821010010
S831010011
T841010100
U851010101
V861010110
W871010111
X881011000
Y891011001
Z901011010

ASCII and binary codes for lowercase letters (a to z)

Lowercase letters sit exactly 32 places higher than their capital counterparts on the ASCII table, starting at 97 for “a” and ending at 122 for “z”. That fixed offset of 32 is why converting between upper and lower case in code often involves adding or subtracting 32 from the ASCII value.

LetterASCII codeBinary code
a971100001
b981100010
c991100011
d1001100100
e1011100101
f1021100110
g1031100111
h1041101000
i1051101001
j1061101010
k1071101011
l1081101100
m1091101101
n1101101110
o1111101111
p1121110000
q1131110001
r1141110010
s1151110011
t1161110100
u1171110101
v1181110110
w1191110111
x1201111000
y1211111001
z1221111010

Converting a letter to its ASCII or binary code

To find a letter’s code, locate it in the tables above and read across. The capital letter “A” has ASCII value 65 and binary value 1000001. The lowercase “a” has ASCII value 97 and binary value 1100001, exactly 32 more than its capital form. This 32-point gap holds true for every letter pair, so once you know a capital letter’s ASCII value, adding 32 gives you the lowercase version instantly.

Binary code puzzles typically ask you to translate a string of seven-digit binary numbers back into letters. Working through each 7-bit group against the tables above resolves the message one character at a time, since every printable capital and lowercase letter has a fixed, unique binary pattern.


NATO phonetic alphabet for spelling letters aloud

The International Radiotelephony Spelling Alphabet, commonly called the NATO phonetic alphabet, assigns a distinct code word to each letter so it can’t be confused with another over a radio or phone line. It was standardized by the International Civil Aviation Organization in 1955–1956 and remains the reference version used in aviation, emergency services, and everyday spelling over the phone.

LetterCode word
AAlfa
BBravo
CCharlie
DDelta
EEcho
FFoxtrot
GGolf
HHotel
IIndia
JJuliett
KKilo
LLima
MMike
NNovember
OOscar
PPapa
QQuebec
RRomeo
SSierra
TTango
UUniform
VVictor
WWhiskey
XXray
YYankee
ZZulu

The spellings Alfa and Juliett are intentional. Alfa uses an “f” instead of “ph” so non-English speakers pronounce it correctly, and Juliett keeps a double “t” so French speakers don’t drop the final consonant. Numbers get the same treatment: 3, 4, 5, and 9 are pronounced “tree,” “fower,” “fife,” and “niner” to avoid being mistaken for other words or numbers on a noisy line.

Some maritime and telecom agencies use a separate set of digit code words, such as “Nadazero” for 0 and “Unaone” for 1, but the NATO/ICAO digit pronunciations above are the ones paired with the standard letter alphabet.


Other coding systems used to represent the alphabet

Classroom code-breaking exercises frequently pull in additional systems beyond ASCII, binary, and the NATO phonetic alphabet. Morse code translates each letter into a pattern of short and long signals, American Sign Language assigns a distinct handshape to every letter, and Egyptian hieroglyphic charts map letters to ancient symbols for cross-curricular history and literacy activities. These are typically used in verbal reasoning practice and cipher-style puzzles rather than in computing or radio communication.

When you’re decoding a message and unsure which system applies, check whether the code uses numbers only (likely ASCII), strings of 0s and 1s (binary), spoken words (NATO phonetic), or dots and dashes (Morse). Matching the code’s format to the right chart is the fastest way to translate it accurately.