Base Converter (2-64)

Supports real-time conversion across bases 2 to 64, defaulting from base 10 to base 16 without page reload on base changes.

You can type on either side for two-way conversion and copy either result with one click.

Report
Left Value
Right Value
Enter a value to start conversion.
Step 1
Pick the left and right bases (2–64) from the toolbar; each menu entry shows the base name.
Step 2
Type on either side—the other side updates live. The side you are editing is treated as the source.
Step 3
Use Copy in each panel header to grab results, or Swap to exchange bases and values.

When bases change, the URL updates to a path like base10-to-base16 for sharing or bookmarks. Conversion runs locally in your browser; nothing is uploaded.

What characters can I type?
You can use digits, uppercase and lowercase letters, plus a couple of extra symbols supported by this tool. For a smaller base, each digit must stay within that base’s allowed range.
Can I start from the right side?
Yes. Both panels accept input; the tool always converts from the side you are currently typing in.
Why does it say invalid format?
Common causes: a symbol is not allowed for the selected base, or both sides are set to the same base so conversion cannot run.
What does the URL change mean?
The path encodes the current left/right base pair so you can share that setup or bookmark it, without a full page reload.
Is my input stored?
No. Conversion happens in your browser; we do not receive or store what you type.
numeral systems binary hexadecimal
2026-05-12

Hex, Binary, Octal Explained: A Developer's Guide to Number Systems

#FF5733 is a color. chmod 755 is a permission. 0xDEADBEEF is a memory address. Behind all these mysterious numbers lies the same concept: numeral systems. This guide breaks down decimal, binary, octal, and hexadecimal with real-world programming examples.

Color Theory Frontend Dev Design Tools
2026-03-22

The Complete Color Code Guide: RGB, HEX & HSL Explained

RGB, HEX, and HSL all describe the same colors — but in completely different ways. This guide breaks down the math, the design logic, and when to use each color model, from screen design to print and accessibility.

API HTTP Web Development
2026-06-28

API Error State Decision Framework: From HTTP Status Codes to System Resilience

API error handling is more than just returning codes; it is a testament to system robustness. This article establishes a decision framework based on HTTP status code semantics to optimize API feedback mechanisms.

Cryptographic Security Security Defense Key Management
2026-06-27

Cryptographic Security Implementation Workflow: From Key Lifecycle to Defense Checklist

A deep dive into cryptographic security practices. We provide a comprehensive lifecycle management process—from key generation and storage to destruction—to help developers build a robust defense checklist.

Base64 JWT email attachments
2026-05-15

Where Is Base64 Hiding? From Email Attachments to JWT Tokens — An Encoding Technology You Use Every Day Without Knowing It

Base64 isn't just "something that makes data longer." Every email with an attachment, every JWT token you receive after logging in, every tiny icon embedded in CSS — almost all of them use Base64. Here's why Base64 is everywhere, and what role it actually plays in modern systems.

Unix Timestamp UNIX epoch API design
2026-04-29

Unix Timestamps in Programming: API Design, Database Storage & Cross-Language Time Handling Guide

Why do programs store a large integer instead of "2026-04-29 10:00:00"? Unix timestamps are the most reliable format for passing time across languages and systems. This guide covers API design best practices, database column choices, the seconds vs. milliseconds trap, and code examples in JavaScript, Python, PHP, and Go.