How Text to Binary Works
Each character is converted to its ASCII/UTF-8 code, then represented in binary (base 2). For example, 'A' = 65 = 01000001.
ASCII Table (Common Characters)
| Char | Decimal | Binary |
|---|---|---|
| A | 65 | 01000001 |
| a | 97 | 01100001 |
| 0 | 48 | 00110000 |
| Space | 32 | 00100000 |