The Binary Alphabet: How A to Z Is Written in Binary
See the full binary alphabet from A to Z. Learn how letters map to 8-bit ASCII codes, with complete uppercase and lowercase charts and worked examples.
The Binary Alphabet: How A to Z Is Written in Binary
The binary alphabet is the set of binary codes that represent each letter of the alphabet inside a computer. Every letter, from A to Z, is stored as an 8-bit binary number based on its ASCII code — for example, the capital letter A is 01000001 and lowercase a is 01100001. Computers do not store letters as shapes; they store numbers, and binary is simply those numbers written in base 2.
This guide explains how the binary alphabet works, gives you a complete A–Z reference chart for both uppercase and lowercase letters, and shows the simple logic that connects a letter to its 1s and 0s. Once you understand the pattern, you can decode binary text by hand. To convert whole words or sentences in a single click, use our free Text to Binary converter — no signup, just paste and go.
What Is the Binary Alphabet?
Binary is a base-2 number system that uses only two digits: 0 and 1. Each digit is called a "bit." Because computers are built from switches that are either off (0) or on (1), binary is the natural language of hardware. To represent text, computers assign every character a number, then write that number in binary. The binary alphabet is the result of doing this for the 26 letters of the English alphabet.
The numbering scheme almost everyone uses is ASCII (American Standard Code for Information Interchange). ASCII gives each character a value: uppercase A through Z are 65 through 90, and lowercase a through z are 97 through 122. Convert those decimal values to 8-bit binary and you have the binary alphabet.
How a Letter Becomes Binary
The process has three short steps. Let us trace the letter "H" as an example:
- Find the ASCII code. H is the 8th uppercase letter, and its ASCII value is 72.
- Convert 72 to binary. 72 in binary is 1001000.
- Pad to 8 bits. Add a leading zero to make it a full byte:
01001000.
That is it. Every character is stored as one byte (8 bits), so we always pad shorter binary numbers with leading zeros to fill the eight positions. This consistency is what lets a computer read a long string of bits and chop it into clean 8-bit chunks, one per character.
Complete Binary Alphabet Chart (Uppercase A–Z)
Here is the full reference for capital letters, showing each letter, its ASCII decimal value, and its 8-bit binary code. Notice that every uppercase letter starts with the pattern 010.
| Letter | ASCII | Binary | Letter | ASCII | Binary |
|---|---|---|---|---|---|
| A | 65 | 01000001 | N | 78 | 01001110 |
| B | 66 | 01000010 | O | 79 | 01001111 |
| C | 67 | 01000011 | P | 80 | 01010000 |
| D | 68 | 01000100 | Q | 81 | 01010001 |
| E | 69 | 01000101 | R | 82 | 01010010 |
| F | 70 | 01000110 | S | 83 | 01010011 |
| G | 71 | 01000111 | T | 84 | 01010100 |
| H | 72 | 01001000 | U | 85 | 01010101 |
| I | 73 | 01001001 | V | 86 | 01010110 |
| J | 74 | 01001010 | W | 87 | 01010111 |
| K | 75 | 01001011 | X | 88 | 01011000 |
| L | 76 | 01001100 | Y | 89 | 01011001 |
| M | 77 | 01001101 | Z | 90 | 01011010 |
Complete Binary Alphabet Chart (Lowercase a–z)
Lowercase letters use ASCII values 97 through 122. The handy trick: each lowercase letter's value is exactly 32 more than its uppercase counterpart, so lowercase letters all begin with 011.
| Letter | ASCII | Binary | Letter | ASCII | Binary |
|---|---|---|---|---|---|
| a | 97 | 01100001 | n | 110 | 01101110 |
| b | 98 | 01100010 | o | 111 | 01101111 |
| c | 99 | 01100011 | p | 112 | 01110000 |
| d | 100 | 01100100 | q | 113 | 01110001 |
| e | 101 | 01100101 | r | 114 | 01110010 |
| f | 102 | 01100110 | s | 115 | 01110011 |
| g | 103 | 01100111 | t | 116 | 01110100 |
| h | 104 | 01101000 | u | 117 | 01110101 |
| i | 105 | 01101001 | v | 118 | 01110110 |
| j | 106 | 01101010 | w | 119 | 01110111 |
| k | 107 | 01101011 | x | 120 | 01111000 |
| l | 108 | 01101100 | y | 121 | 01111001 |
| m | 109 | 01101101 | z | 122 | 01111010 |
Worked Example: Spelling a Word in Binary
Let us encode the word "Hi" using the binary alphabet. We look up each letter and write its 8-bit code:
- H = ASCII 72 =
01001000 - i = ASCII 105 =
01101001
So "Hi" in binary is 01001000 01101001. To decode it, reverse the process: split the bits into 8-bit groups, convert each group back to decimal (72 and 105), and look up the matching characters (H and i). Spaces between bytes are just for human readability — a computer reads the stream without them.
The case-shift shortcut: to turn an uppercase binary letter into lowercase, flip the third bit from 0 to 1 (which adds 32). That single bit is the difference between A (01000001) and a (01100001).
Encoding longer phrases by hand gets tedious fast. Our Text to Binary tool converts entire paragraphs instantly and also decodes binary back to readable text, which is perfect for checking your manual work.
How to Decode Binary Back to Text
Reading a binary message is the reverse of encoding it, and the structure makes it straightforward. Suppose you receive this string: 01000011 01000001 01010100. Follow these steps:
- Split into bytes. Group the bits into chunks of eight. Here we already have three groups: 01000011, 01000001, 01010100.
- Convert each byte to decimal. Using the place values 128, 64, 32, 16, 8, 4, 2, 1, the first byte 01000011 is 64 + 2 + 1 = 67. The second is 65. The third is 84.
- Look up the characters. 67 = C, 65 = A, 84 = T.
The message spells CAT. The hardest part by hand is the binary-to-decimal step, which is why a converter is so handy: it removes the arithmetic and lets you focus on the message. If a group of bits is not a multiple of eight, the original encoding is malformed or you have miscounted — every ASCII character should occupy exactly one byte.
Numbers, Spaces, and Punctuation in Binary
The binary alphabet is usually discussed in terms of letters, but the same ASCII system covers digits and symbols too. A common point of confusion is that the digit characters are not the same as their numeric values. The character "1" is ASCII 49 (00110001), not 1. The space character is ASCII 32 (00100000), and it is a real character that gets its own byte in a binary message — it is not just a gap. Here are a few useful non-letter codes:
| Character | ASCII | Binary |
|---|---|---|
| (space) | 32 | 00100000 |
| ! | 33 | 00100001 |
| 0 | 48 | 00110000 |
| 9 | 57 | 00111001 |
| ? | 63 | 00111111 |
Knowing these means you can encode a full sentence, complete with punctuation and spaces, entirely in binary. Our Text to Binary converter handles every printable character automatically, so you never have to memorize the symbol codes.
Why the Binary Alphabet Matters
Understanding the binary alphabet is more than a party trick. It demystifies how every email, web page, and text message is fundamentally stored and transmitted. It is the foundation for learning about character encodings like UTF-8 (which extends ASCII to support every language and emoji), and it makes concepts like bitwise operations, data compression, and networking far easier to grasp.
For students, the binary alphabet is a common entry point into computer science. For developers, recognizing ASCII byte patterns helps with debugging encoding issues. And for puzzle and escape-room fans, decoding binary messages is a popular challenge.
Binary, ASCII, and Unicode: The Quick Distinction
These three terms are related but not the same. Binary is the base-2 numbering system (the 1s and 0s). ASCII is a specific table that maps 128 characters to numbers 0–127. Unicode is a much larger standard that maps over a hundred thousand characters, with UTF-8 being the most common way to encode Unicode in bytes. For the basic A–Z alphabet, ASCII and UTF-8 produce identical binary, so the chart above works for both.
Related Reading
Continue building your base-conversion skills in our Binary Converters hub. Two related tutorials pair well with this one: Decimal to ASCII: Mapping Numbers to Characters explains the numbering behind the letters, and Decimal to Octal: Repeated Division by 8 covers another classic base conversion. Together they give you a complete picture of how computers represent both numbers and text.
Frequently Asked Questions
What is the binary alphabet?
The binary alphabet is the set of binary codes that represent each letter A–Z inside a computer. Each letter is stored as an 8-bit binary number based on its ASCII value, such as A = 01000001.
What is the letter A in binary?
Uppercase A is 01000001 (ASCII 65) and lowercase a is 01100001 (ASCII 97). The two differ only by the third bit, which represents the value 32.
Why are letters stored as 8 bits?
One byte equals 8 bits, and ASCII characters fit within a single byte. Padding every letter to 8 bits with leading zeros keeps each character the same length, so a computer can split a binary stream into clean one-byte chunks.
How do I convert a word to binary?
Look up the ASCII value of each letter, convert each value to 8-bit binary, and write the bytes in order. For example, "Hi" becomes 01001000 01101001. An online text-to-binary converter does this automatically.
What is the difference between uppercase and lowercase in binary?
Lowercase letters have ASCII values exactly 32 higher than their uppercase versions. In binary this means flipping the third bit from 0 to 1, so A (01000001) becomes a (01100001).
Is the binary alphabet the same as Morse code?
No. Morse code uses dots and dashes of varying length per letter, while the binary alphabet uses fixed 8-bit ASCII codes. They are different systems for representing letters.
Does the binary alphabet work for other languages?
The basic A–Z chart covers English. Accented letters and non-Latin scripts use the larger Unicode standard, typically encoded in UTF-8, which can use more than one byte per character.