Binary Converter
Convert text to binary (0s and 1s) and binary back to text — plus decimal, hex and octal conversions.
About Binary Conversion
Binary is the base-2 number system used by computers internally — every piece of data, instruction, and value in a computer is ultimately represented as binary digits (bits), either 0 or 1. Understanding binary is foundational to computer science, embedded programming, networking, and understanding how computers process data.
When converting text to binary, each character is first converted to its ASCII or UTF-8 byte value, then that byte is expressed as an 8-bit binary number. For example, 'H' is ASCII 72, which is 01001000 in 8-bit binary. The word "Hello" becomes: 01001000 01100101 01101100 01101100 01101111.
The number base converter section lets you convert any integer between binary (base 2), decimal (base 10), hexadecimal (base 16), and octal (base 8). Type in any field and the other three update instantly — useful for understanding processor registers, memory addresses, file permissions (octal), and network masks.