Binary Converter
Convert between text and binary with ASCII table
ASCII Binary Reference
Each character is represented by 8 bits (1 byte) in binary format.
| Char | Decimal | Binary |
|---|---|---|
| A | 65 | 01000001 |
| a | 97 | 01100001 |
| 0 | 48 | 00110000 |
| Char | Decimal | Binary |
|---|---|---|
| Space | 32 | 00100000 |
| ! | 33 | 00100001 |
| @ | 64 | 01000000 |