Number Base Converter Online — Binary Hex Decimal

Convert integers between bases 2 and 36 with BigInt precision. Live preview, swap bases, optional byte endianness, and auto 0x/0b/0o output prefixes — browser-local.

Loading…
Number base converter — developer notes
Convert integers across bases 2–36 with BigInt. Live preview, swap bases, optional byte endianness for hex/binary dumps, and auto output prefixes.

How conversion works

Enter a value in the input base (digits A–Z case-insensitive; 0x/0b/0o prefixes accepted when the input base matches). The result updates as you type. Byte endianness applies only when the output base is 2 or 16: the absolute value is padded to whole bytes and grouped (spaces). Use Swap to move the result back to the input pane and flip the bases. Auto output prefix adds 0x, 0b, or 0o for raw hex/binary/octal output — not for byte-grouped endian dumps.

Options

Input base (2–36)
How to interpret the typed digits. Presets cover binary, octal, decimal, and hex; other bases are available in the list.
Output base (2–36)
Target radix for the result. Default is hexadecimal for common debug workflows.
Byte endianness (none / BE / LE)
None prints raw digits (including a leading minus for negatives). BE/LE group padded bytes for hex or binary on non-negative values only — useful for masks and memory dumps. Disabled for other output bases.

Examples

Decimal → hex

Input

255 (base 10 → 16)

Output

FF

Decimal → hex LE bytes

Input

258 (base 10 → 16, LE)

Output

02 01

Related utilities

Encode binary-ish text with Base64, or explore bits via the regex tester for pattern masks.

Number base converter FAQ

Radix conversion questions

Why BigInt?

JavaScript Number loses precision above 2^53−1. BigInt keeps large integers exact for hex dumps and masks.

Are floats supported?

No — integers only. Fractions and IEEE floats are out of scope for this tool.

When does endianness apply?

Only for output bases 2 and 16. Other bases always print raw digits.

Is my value uploaded?

Never — conversion runs in your browser.

What does Swap do?

It copies the current result into the input pane (spaces stripped from byte groups) and exchanges the input and output bases — handy for round-trip checks.

Developer utilities

Timestamps, UUID, ULID, Nanoid, cron, passwords, regex, slugify, number bases, case, text diff, and chmod — all client-side.

Explore other tool categories

Minify

Shrink code and assets for production — minify JavaScript, CSS, HTML, JSON and XML before gzip or CDN deploy.

Beautify

Make code readable with consistent indentation — beautify JavaScript, CSS, TypeScript, SCSS, LESS, Markdown, GraphQL, SQL, YAML and more in your browser.

Unminify

Expand minified or compressed code — unminify JavaScript, CSS, TypeScript, SCSS, LESS, SQL, YAML and other formats when debugging or reviewing.

Conversion

Transform data between JSON, YAML, XML and CSV locally — no server uploads.

CSS preprocessors

Compile SCSS or LESS to standard CSS in the browser — pair with beautify or minify for a full stylesheet workflow.

JSON Tools

Validate, format, diff and explore JSON payloads — complementary to minifiers and converters.

SVG Tools

Preview, optimize with SVGO, export Data URI, resize, beautify, convert to JSX and validate SVG — all in your browser.

DevOps & Infra

Terraform HCL format/validate/minify, Dockerfile format & lint, Docker Compose and .env validation.

CI/CD

GitHub Actions and GitLab CI — format YAML and check workflow/job structure in your browser.

Logs & observability

Line-oriented JSON/NDJSON and Nginx/Apache access logs — format, filter, validate, and CSV/TSV.

Kubernetes

Multi-doc manifests, structural validate, Ingress/Deployment starters, and Helm values formatting.

Networking / IP

CIDR, subnets, and IPv4/IPv6 helpers — in your browser.

Security & tokens

JWKS, X.509 certificates, and secrets scan — browser-local.

API & schemas

OpenAPI tools to format, validate, and lint your specs.

Encoding

Encode or decode Base64, URL components and HTML entities — client-side only.

Text & Markdown

Count words, build Markdown TOCs, and clean line lists — all in your browser.

Serialization

Serialize and deserialize PHP data structures beside JSON workflows.