Log or database timestamp
Paste the raw value as-is. If it has 10 digits, treat it as seconds; if it has 13 digits, treat it as milliseconds.
Epoch date converter
An epoch date is a timestamp number, not a formatted month-day-year string. Paste Unix seconds or milliseconds below to convert the value into UTC, ISO 8601, and local timezone date output.
Quick answer for a common lookup: 1767225600 converts to January 1, 2026 at 00:00:00 UTC. For the full boundary explanation, use the 1767225600 start of 2026 reference.
Paste the raw value as-is. If it has 10 digits, treat it as seconds; if it has 13 digits, treat it as milliseconds.
Many APIs call an epoch number a date even though it is not a formatted calendar string. Convert it before showing it to users.
Read the UTC result first, then compare local time. A UTC midnight timestamp can display as the previous date in western timezones.
Epoch values are UTC-based. If an epoch-to-date result appears one calendar day early or late, the raw timestamp is usually correct and the display timezone changed the visible date. This matters for values such as 1767225600, where UTC shows the first second of 2026 but America/Los_Angeles shows December 31, 2025 in the afternoon.
For adjacent workflows, use the focused convert epoch to date guide, the Unix timestamp to date converter, or the epoch time converter when you also need date-to-epoch output.
An epoch date is usually a Unix timestamp: the number of seconds or milliseconds since January 1, 1970 at 00:00:00 UTC. Converting it produces a readable calendar date.
Paste the epoch value into the converter, keep the original seconds or milliseconds unit, and read the UTC result before comparing local timezone output.
1767225600 is Thursday, January 1, 2026 at 00:00:00 UTC. The matching millisecond timestamp is 1767225600000.
The timestamp represents the same instant everywhere, but the displayed calendar date can change by timezone. UTC is the safest baseline for logs, APIs, and tests.
Related Tools
More free tools for developers debugging timestamps, schedules, and text changes.