"abc" in Binary
Binary Code
01100001 01100010 01100011
"abc" in binary is: 01100001 01100010 01100011
Character breakdown
| Char | ASCII | Binary | Hex |
|---|---|---|---|
| a | 97 | 01100001 | 61 |
| b | 98 | 01100010 | 62 |
| c | 99 | 01100011 | 63 |
How binary encoding works
Each character in "abc" is converted to its ASCII code, then written in 8-bit binary. For example, the letter "a" has ASCII code 97, which is 01100001 in binary.
Try the converter
Loading tool...