"Peace" in Binary
The text "Peace" written in 8-bit binary (ASCII/UTF-8) is:
01110000 01100101 01100001 01100011 01100101Letter by letter
| Character | Binary |
|---|---|
| p | 01110000 |
| e | 01100101 |
| a | 01100001 |
| c | 01100011 |
| e | 01100101 |
How text becomes binary
Each character has a numeric code (ASCII/UTF-8), and that code is written as an 8-bit binary byte - lowercase h is 104, which is 01101000. String the bytes together and you have the whole phrase in binary. Decode binary back to text with the binary to text converter, or look up any letter in the alphabet in binary table.