Time search tool
UTC to local time converter
UTC is great for storage and logs, but humans usually need local time. Paste a UTC datetime and choose the timezone that matches the person, customer, server, or region you care about.
Examples for this search
Use America/New_York for Eastern time.
Use Europe/London for UK time.
Use UTC when you want to normalize output back to the original timezone.
The page treats the input as UTC, parses it in the browser, then formats the same instant with the browser Intl time zone database. Nothing is uploaded to a server.
What this time zone converter does
Use this time zone converter when a timestamp is already in UTC and you need to read it in a human timezone such as Pacific, Eastern, London, or UTC itself. This is common when reading server logs, SQL query results, cron job output, webhook payloads, and API responses.
Common use cases
- Translate UTC log timestamps before sharing an incident timeline with a teammate.
- Check what time a scheduled job ran for a customer in another region.
- Compare database rows stored in UTC with support tickets, calendar events, or local reports.
- Convert ISO 8601 values from APIs into the timezone used by your team.
Accepted input formats
2026-08-02 14:30:00
2026-08-02T14:30:00Z
America/Los_Angeles, America/New_York, Europe/London, UTC
How it works
The page treats the input as UTC, parses it in the browser, then formats the same instant with the browser Intl time zone database. Nothing is uploaded to a server.
Common mistakes
- Do not paste a local time unless you first convert it to UTC; this tool assumes the source time is UTC.
- If the output looks one hour off, check whether daylight saving time applies on that date.
- Prefer IANA timezone names like America/Los_Angeles over vague labels like PST, because PST does not represent daylight saving time.
Frequently asked questions
Does this convert UTC to PST or PDT?
It converts UTC to the selected IANA timezone. For Los Angeles, the output may be PST or PDT depending on the date.
Is my timestamp sent to Toolvert?
No. The conversion runs in your browser.
Why use America/Los_Angeles instead of PST?
America/Los_Angeles includes daylight saving rules. PST is only the fixed winter offset.