Converters — formats and units
Convert between formats and units.
A converter is the simplest possible tool: take a value, give it back in a different shape. The hard part is getting the edge cases right — leap years, milliseconds versus seconds, timezone offsets, malformed input, fractional values. A good converter handles all of them quietly so you do not have to think about them.
This category is seeded with a Unix timestamp converter that handles both directions with autodetected units and live updates as you type. It accepts seconds or milliseconds, shows the result as an ISO 8601 string, a human-readable UTC date, and a local-time rendering simultaneously, so you can copy whichever one your downstream system expects. More converters (number-base, units, time zones) are on the way — each will follow the same pattern: instant, bidirectional, with documented gotchas.
Every converter runs entirely in your browser. The timestamps you convert, the dates you parse, and the values you copy never touch a server — useful when you are debugging a production incident with real customer data, or just checking when a token expires.
11 tools in this category
- JSON ⇄ CSVConvert between JSON and CSV in both directions. Handles nested objects with dot-notation flattening and RFC 4180 quoting. Runs entirely in your browser.
- Text DiffCompare two blocks of text and see added, removed, and unchanged lines side-by-side. Free, instant, 100% client-side — your content never leaves your browser.
- Number BaseConvert numbers between binary, octal, decimal, and hexadecimal instantly. Live bidirectional conversion with explanations — free, runs in your browser.
- TimestampConvert between Unix timestamps and human-readable dates. Free online epoch converter — supports seconds, milliseconds and ISO 8601.
- Hex to DecimalConvert hexadecimal numbers to decimal instantly. Supports arbitrary precision via BigInt, handles 0x prefix. Free, runs in your browser.
- Decimal to HexConvert decimal numbers to hexadecimal instantly. Arbitrary precision via BigInt, outputs lowercase hex. Free, runs entirely in your browser.
- Binary to DecimalConvert binary numbers to decimal instantly. Arbitrary precision, handles any bit-width. Free, runs in your browser — no ads, no signup.
- Decimal to BinaryConvert decimal numbers to binary instantly. Arbitrary precision via BigInt, clean grouped output. Free, runs entirely in your browser.
- Hex to BinaryConvert hexadecimal numbers to binary instantly. Each hex digit maps to 4 bits. Free, runs entirely in your browser, zero dependencies.
- Binary to HexConvert binary numbers to hexadecimal instantly. Every 4 bits become one hex digit. Free, runs in your browser, arbitrary precision.
- px to remConvert px to rem and rem to px instantly. Set a custom base font size, convert single values or a batch list, copy results. Free, runs in your browser.