Unix seconds
—
Timestamps, JSON, Base64, URL escaping, UUIDs, SHA hashes. Everything runs in the browser — no requests leave this page, so it works fine with the network off.
Paste a Unix timestamp (seconds or milliseconds — both are detected) or any date string.
Reformat, minify, or check that a payload parses. Errors report the character offset.
Base64 is UTF-8 safe in both directions. URL encoding escapes every reserved character, which is what you want when a value goes into a query string.
UUIDs and random strings come from the browser's cryptographic RNG. Hashes use SubtleCrypto, so they match sha256sum on the same bytes.