"test" in Binary
Binary Code
01110100 01100101 01110011 01110100
"test" in binary is: 01110100 01100101 01110011 01110100
Character breakdown
| Char | ASCII | Binary | Hex |
|---|---|---|---|
| t | 116 | 01110100 | 74 |
| e | 101 | 01100101 | 65 |
| s | 115 | 01110011 | 73 |
| t | 116 | 01110100 | 74 |
How binary encoding works
Each character in "test" is converted to its ASCII code, then written in 8-bit binary. For example, the letter "t" has ASCII code 116, which is 01110100 in binary.
Try the converter
Loading tool...