Unix time without the timezone traps
Unix timestamps count seconds (or milliseconds) since 1970-01-01 UTC. They are unambiguous on the wire and confusing on screens. This converter shows local (with a timezone you pick), UTC, ISO, and relative phrasing so you can confirm what an API field actually meant — without posting the number to a remote converter.
Off-by-1000 errors are classic: treating Date.now() milliseconds as seconds yields dates in the far future. Digit-count detection reduces that footgun. When in doubt, compare against the live clock above.