Practical guide
How to use the convertor de marcaje de timp
The timestamp converter translates Unix time to readable dates or converts a date into a Unix timestamp. It helps debug logs and integrations where time zones, seconds and milliseconds are easy to confuse.
Good reasons to use it
- Interpret a timestamp from an API, database or log.
- Create a test timestamp for a scheduled event.
- Compare UTC with a local display time.
A reliable workflow
- Identify whether the value uses seconds or milliseconds.
- Convert it and review the UTC and local interpretation.
- Store absolute times with an explicit zone and test daylight-saving boundaries.
How to interpret the result
Unix timestamps represent an instant relative to UTC and do not contain a local time zone. A displayed local time depends on the viewer’s zone rules. Values that are roughly one thousand times too large are often milliseconds.
Frequently asked questions
Why is the date in 1970 or far in the future?
The input may use the wrong unit, be truncated or be interpreted as seconds instead of milliseconds.
Does a Unix timestamp include a time zone?
No. It represents an instant; time zones are applied only when formatting it for display.