Binary To ASCII
Our Binary to ASCII Converter is an essential tool for developers, engineers, and students working with digital data.
Words Limit/Search : 50
Upto 30k Words
Go Pro
Share on Social Media:
Binary to ASCII Conversion Table (7-bit Standard)
Binary | ASCII | Char | Description |
---|---|---|---|
0100000 | 32 | (space) | Space character |
0100001 | 33 | ! | Exclamation mark |
0100010 | 34 | " | Double quote |
0100011 | 35 | # | Hash/Pound |
0100100 | 36 | $ | Dollar sign |
0100101 | 37 | % | Percent sign |
0100110 | 38 | & | Ampersand |
0100111 | 39 | ' | Single quote |
0101000 | 40 | ( | Left parenthesis |
0101001 | 41 | ) | Right parenthesis |
0101010 | 42 | * | Asterisk |
0101011 | 43 | + | Plus sign |
0101100 | 44 | , | Comma |
0101101 | 45 | - | Hyphen |
0101110 | 46 | . | Period |
0101111 | 47 | / | Forward slash |
0110000 | 48 | 0 | Digit 0 |
0110001 | 49 | 1 | Digit 1 |
... | ... | ... | ... |
1100001 | 97 | a | Lowercase 'a' |
1100010 | 98 | b | Lowercase 'b' |
... | ... | ... | ... |
Key Examples (8-bit Extended ASCII)
Binary | Char | Description |
---|---|---|
10000001 | ü | Umlaut-u |
10100100 | ñ | Spanish n-tilde |
11111111 | ÿ | Latin small y-diaeresis |
How to Convert Binary to ASCII?
Group binary into 7 or 8-bit chunks (standard vs extended ASCII)
Pad with leading zeros if needed (101
→ 00000101
)
Match to table or use decimal conversion:
1000001
→ 65 (Decimal) → 'A' ASCII
Try our Binary to ASCII Converter for instant results!