Guide

How to Read Unix Timestamps Without Guessing

Learn how Unix timestamps work, how to tell seconds from milliseconds, and how to convert them safely.

Unix timestamps look simple, but they cause avoidable mistakes when teams mix seconds and milliseconds. If a value has ten digits, it usually represents seconds. If it has thirteen digits, it usually represents milliseconds.

Where timestamps show up

You often see Unix time in API responses, server logs, analytics exports, scheduled tasks, and webhooks. A wrong assumption about the unit can make an event appear decades away from the correct time.

Quick rule of thumb

Ten digits generally means seconds. Thirteen digits generally means milliseconds. Always verify by converting the value and comparing it with the expected event time.

Why a browser tool helps

A focused converter makes it easier to test both forms, inspect UTC output, and compare the ISO representation in one place. This is especially useful during debugging and data cleanup.