Timestamp Converter
Read timestamps from logs, APIs, databases, and scheduled jobs. The converter shows local time, UTC, ISO 8601, Unix seconds, and Unix milliseconds together.
Data handling notes
- Ten-digit values are treated as seconds and thirteen-digit values as milliseconds.
- Local date input uses the current browser time zone.
- Conversion is deterministic and does not require a network request.
Before you rely on the result
This tool is intended for fast inspection and routine preparation. It can save time, but it does not replace review when the result affects production systems, security settings, business data, or legal obligations.
- Check representative inputs instead of assuming one example covers every edge case.
- Do not paste secrets, private customer data, or credentials unless you have confirmed the page processes that data locally and the use is allowed by your organization.
- Copy the output into your own workflow only after checking formatting, timezone, encoding, or syntax assumptions.
- Developer utilities are designed for quick checks. Treat generated values and decoded payloads as inputs to a review process, not as proof that a system is secure.
Real examples
Unix seconds from an API log
Ten-digit values are usually Unix seconds in logs and API payloads.
Input
1704067200
Output
2024-01-01 00:00:00 UTC Unix milliseconds: 1704067200000
Local time to timestamp
Use this when a scheduler asks for an epoch value but the source time is written as a local date-time.
Input
2026-08-06 14:30
Output
Unix seconds and milliseconds for the selected browser time zone.
FAQ
Which time zone is used?Local input uses your browser time zone; UTC and ISO outputs are displayed separately.
Are milliseconds supported?Yes. Thirteen-digit Unix values are interpreted as milliseconds.