TopDev
🔢

Number Base Converter — DEC/HEX/BIN/OCT/ASCII

Convert between bases 2-36 + ASCII codes. BigInt support for huge numbers, auto-strips 0x/0b/0o prefixes. Useful for bitwise debugging, memory dumps, CS101.

All tools Browser-only
Sample values:

Outputs

Binary (Base 2)
Octal (Base 8)
Decimal (Base 10)
Hexadecimal (Base 16)
Base 36

ASCII / Text ↔ Number

ASCII codes
Binary
Hex

Convert between bases 2-36 + ASCII codes. Supports negative and large numbers (BigInt). Useful for bitwise debugging, memory dumps, and CS101.

Common bases

When you need base conversion

BigInt tip

JavaScript's max safe integer is 2^53 ≈ 9 × 10^15. This tool uses BigInt so it converts up to ~10^308. Useful for:

Who this is for

Backend devs, API integrators, anyone debugging JSON/YAML/CSV payloads or working with structured data.

FAQ

Is my sensitive data safe?

Yes. JSON/YAML/CSV you paste is NOT uploaded to any server. All processing happens locally in your browser.

Is there a size limit?

Browser RAM dependent. Files under 10MB run smoothly. Larger files may freeze the tab.

Related tools

See all tools →