> Text to Binary_
Type text to see its binary representation. Each character is converted to an 8-bit binary number.
Output will appear here...
How Text to Binary Works
Each text character has an ASCII code number. This number is converted to base-2 (binary). For example, 'A' has ASCII code 65, which is 01000001 in binary. Each character uses 8 bits (one byte).
Binary Number System
Binary uses only two digits: 0 and 1. Each position represents a power of 2. From right to left: 1, 2, 4, 8, 16, 32, 64, 128. The binary number 01000001 = 0+64+0+0+0+0+0+1 = 65 = 'A'.