All Number Converter
Type a number in any base and see it in every other base instantly.
Type in any field – the others update instantly. Fractions like 10.5 work too.
All Number Converter – Every Base at Once
This all numbers converter shows one value in decimal, binary, octal, hexadecimal, and a custom base of your choice side by side. Type into any field and every other field updates immediately, so you never have to pick a "from" and "to" direction first. It is the quickest way to check what 0xFF, 0b1010, or 755 really mean.
Which number systems are supported?
- Decimal (base 10) – the everyday system with the digits 0–9.
- Binary (base 2) – ones and zeros, the language of CPUs, bit masks, and network masks.
- Octal (base 8) – digits 0–7, still used for Unix file permissions such as
chmod 755. - Hexadecimal (base 16) – digits 0–9 and A–F, used for memory addresses, colors, and byte dumps.
- Custom base 2–36 – pick any radix, for example base 36 for short IDs (
zz= 1295) or base 3 and base 5 for math homework.
Big numbers and fractions
The converter uses arbitrary-precision integers, so a 64-bit value such as 18446744073709551615 or a 128-bit key converts exactly, without the rounding errors you get from ordinary floating-point calculators. Fractions are supported as well: 10.5 in decimal becomes A.8 in hex and 1010.1 in binary. Fractions that do not end in the target base (like decimal 0.1 in binary) are shown with up to 24 digits.
Input tips
You can paste prefixes (0x, 0b, 0o), a leading minus sign, and digit groups separated by spaces or underscores, e.g. 1111 0000 or 1_000_000. Hex digits are accepted in upper or lower case. The chips below the fields show how many bits and bytes the number needs, which helps when you size a variable or a database column.
Need to convert whole lists instead of a single value? Use a dedicated converter such as Decimal to Hex or Binary to Decimal, which work line by line.
Frequently Asked Questions
How do I convert a number to every base at once?
Type the number into the field of the base you have – for example the Hexadecimal field for 0x1F4. Decimal, binary, octal, and your custom base fill in instantly. You can switch to any other field and keep typing; that field becomes the new source.
What is the largest number I can convert?
There is no practical limit. The tool uses JavaScript BigInt arithmetic, so 64-bit, 128-bit, or even longer integers are converted exactly, digit for digit.
What does base 36 mean?
Base 36 uses the digits 0–9 followed by the letters A–Z, so each character stores one of 36 values. It is popular for compact identifiers such as URL shorteners, because 'zz' already represents 1295.
Can I convert negative numbers?
Yes. A leading minus sign is kept, so -42 becomes -101010 in binary and -2A in hex. If you need the two's-complement bit pattern of a negative number instead, use the Bitwise Calculator with a fixed bit width.