Convert text to binary, hexadecimal, octal, and decimal formats.
Convert text to and from binary, hexadecimal, octal, and decimal formats. All conversions are bidirectional.
Binary: Base-2 number system using only 0 and 1. Each character is represented by 8 bits (1 byte).
Hexadecimal: Base-16 system using 0-9 and A-F. Compact representation of binary data.
Octal: Base-8 system using digits 0-7. Less common but used in some programming contexts.
Decimal: Base-10 ASCII codes. Each character has a numeric code (A=65, B=66, etc.).
Use Cases: Programming, data encoding, debugging, learning computer science, cryptography basics.