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.
4 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.