Text to Binary Converter

Convert text to binary (0s and 1s) and binary back to text. Also shows hex and decimal values.

How Binary Text Encoding Works

Every character has a numeric value in ASCII (or Unicode). Binary encoding converts each character's decimal code to 8-bit binary. For example, 'A' = 65 decimal = 01000001 binary.

CharDecimalHexBinary
A654101000001
a976101100001
0483000110000
Space322000100000