- Which bases?
- Binary (2), octal (8), decimal (10), hex (16). Plus custom base (2-36). All four common ones shown simultaneously for any input.
- Does it handle negative numbers?
- Yes — two's-complement representation for binary/hex. The tool assumes 32-bit or 64-bit context for negative values.
- What about fractions?
- Decimal fractions yes (0.5 in binary = 0.1). Non-terminating fractions get rounded; exact binary representations of some decimals are impossible (0.1 is repeating in binary).
- Can I convert very large numbers?
- Numbers up to 2^53 are precise (JavaScript Number limit). For bigger, use BigInt-specific tools.