This tool converts integers between four numeral systems commonly used in computing and mathematics:
- Binary (Base 2): Uses digits 0–1. The native language of computers.
- Octal (Base 8): Uses digits 0–7. Often used in Unix file permissions.
- Decimal (Base 10): Uses digits 0–9. The everyday number system.
- Hexadecimal (Base 16): Uses digits 0–9 and A–F. Widely used in color codes, memory addresses, and byte representation.
Example
The decimal number 255 is represented as:
- Binary: 11111111
- Octal: 377
- Decimal: 255
- Hexadecimal: FF