🔢
Radix Converter
Online radix converter supporting 2/8/10/16/36 bases with BigInt precision for large numbers
Type a number for real-time conversion
# Radix Converter
Convert numbers between binary, octal, decimal, hexadecimal, and base-36 with BigInt precision.
## Features
- ✅ 2/8/10/16/36 base mutual conversion
- ✅ BigInt support for arbitrarily large integers (no precision loss)
- ✅ 0x/0b/0o prefix auto-recognition
- ✅ Negative number support
- ✅ Real-time results for all bases
- ✅ Individual copy for each result
## How to Use
1. Enter a number and select the source radix
2. All base conversions appear instantly
3. Click copy on any radix result
4. Supports prefixed input such as 0x1F
## FAQ
### How large a number can I convert?
This tool uses JavaScript BigInt, which supports arbitrarily large integers (far beyond 64-bit) without precision loss.
### What is base-36?
Base-36 uses the digits 0-9 and letters a-z (36 characters total) to represent numbers. It is commonly used in URL shorteners, serial numbers, and similar applications.