Number Base Converter
The number base converter changes whole numbers between any pair of bases from binary through to base 36. It converts a whole list at once, tolerates 0x, 0b and 0o prefixes and digit grouping, and uses arbitrary-precision arithmetic so very large values convert exactly rather than losing precision.
Your result will appear here.
Not sure where to start? Use Load example.
Results update automatically and are calculated on your device. Nothing you type is sent to a server.
Runs in your browser. Processing happens entirely in your browser. Nothing you enter is sent to Delimiter.live.
How to use the Number Base Converter
- Paste one number per line.
- Set the base you are converting from and the base you want.
- Read the table — each input line is converted independently.
- Copy the result.
Example
255
11111111
Common use cases
- Converting a hexadecimal value from a debugger into decimal.
- Turning a decimal file permission into octal.
- Reading a binary mask as decimal to check a flag.
- Converting an identifier into base 36 to shorten it.
Limitations and things to watch for
- Whole numbers only. Fractional values and exponent notation are not converted, because representing a fraction in an arbitrary base raises rounding questions with no single right answer.
- A leading minus sign is preserved, but the tool does not model fixed-width two's complement — it converts magnitudes, so it will not show you the 32-bit representation of a negative number.
- Bases above 10 use the letters a to z for digits, giving a maximum of base 36.