Convert text to binary, hex, octal, and decimal. Reverse conversion supported.
Each character in text has a numeric ASCII/Unicode value. Text-to-binary conversion takes each character's value and converts it to its binary (base-2) representation. For example, 'A' = 65 in ASCII = 01000001 in binary.
Hexadecimal (hex) is a base-16 number system that uses digits 0-9 and letters A-F. It's commonly used in programming to represent binary data more compactly. Two hex digits represent one byte (8 bits).