Developer Tools
Number Base Converter
Convert integers between decimal (base 10), binary (base 2), octal (base 8), and hexadecimal (base 16). Type in any field and all other bases update instantly.
Type a number in any base — all other bases update instantly.
Digits: 0–9
Digits: 0–1
Digits: 0–7
Digits: 0–9, A–F
How to use it
- 1 Type a number in any of the four fields (decimal, binary, octal, or hexadecimal).
- 2 The other three fields update automatically.
- 3 If you enter an invalid character for the chosen base, an error message appears.
Use cases
- Converting memory addresses or bitmasks to readable decimal
- Checking binary representations of integers when debugging
- Converting hexadecimal colour components to decimal for calculations
Limitations
- Negative numbers and floating-point values are not supported.
- Hexadecimal output is shown in uppercase.
Related Tools
Color Converter
Convert colors between HEX, RGB, and HSL formats instantly in your browser. Visual color preview and one-click copy for each format.
BrowserHash Generator
Hash Generator lets you generate SHA hash values from text locally in your browser with sample input, copy, download, and privacy-first controls.
BrowserBase64 Encode Decode
Base64 Encode Decode lets you encode or decode Base64 text locally in your browser with sample input, copy, download, and privacy-first controls.
BrowserJSON Formatter
JSON Formatter lets you format JSON with readable indentation locally in your browser with sample input, copy, download, and privacy-first controls.
BrowserJSON Validator
JSON Validator lets you validate JSON syntax locally in your browser with sample input, copy, download, and privacy-first controls.
BrowserJSON Minifier
JSON Minifier lets you minify JSON into compact output locally in your browser with sample input, copy, download, and privacy-first controls.
FAQ
What is the maximum number supported?
The converter uses JavaScript BigInt internally, so very large integers are supported without precision loss.
Can I enter negative numbers?
Not in this version. The converter handles non-negative integers only.