Data utilities

Timestamp converter

Flip between Unix timestamps and readable datetimes, compare timezone offsets, and copy clean snippets without touching a shell. This converter keeps incident timelines and audit logs in sync across distributed teams.

Category: Data utilities View documentation

Highlights

  • Bi-directional conversions keep timestamp and datetime forms synchronized
  • Timezone presets cover local machines, UTC, and custom offsets for audits
  • Copy-ready snippets document ISO strings, RFC formats, and relative times

Timestamp → Datetime

Paste a Unix timestamp to view formatted values across timezones.

Presets

Load a preset.

Formatted outputs

Copy any result to reuse across tools or APIs.

ISO 8601

2025-11-30T22:26:49+00:00

ISO 8601 (UTC)

2025-11-30T22:26:49+00:00

UTC string

Sun, 30 Nov 2025 22:26:49 GMT

Unix seconds

1764541609

Relative

0 seconds ago

Across key timezones

Quick reads across major tech hubs.

UTC

Sun, 30 Nov 2025 22:26:49 UTC

New York

Sun, 30 Nov 2025 17:26:49 EST

San Francisco

Sun, 30 Nov 2025 14:26:49 PST

London

Sun, 30 Nov 2025 22:26:49 GMT

Mumbai

Mon, 01 Dec 2025 03:56:49 IST

Singapore

Mon, 01 Dec 2025 06:26:49 +08

Tokyo

Mon, 01 Dec 2025 07:26:49 JST

Copy-ready snippets

Drop these into consoles or scripts.

MySQL

Format a Unix timestamp using FROM_UNIXTIME.

SELECT FROM_UNIXTIME(1764541609);
PostgreSQL

Cast a Unix timestamp to a timestamptz.

SELECT TO_TIMESTAMP(1764541609) AT TIME ZONE 'UTC';
PHP (Carbon)

Create a Carbon instance from Unix seconds.

Carbon::createFromTimestamp(1764541609, 'UTC')->toIso8601String();
JavaScript

Construct an ISO string from milliseconds.

new Date(1764541609 * 1000).toISOString();
Python

Convert to aware datetime in UTC.

datetime.datetime.fromtimestamp(1764541609, datetime.timezone.utc).isoformat()
Bash

Inspect the timestamp in UTC using date.

date -u -d '@1764541609'

Datetime → Timestamp

Pick a date, time, and timezone to get Unix seconds.

Seconds

1764541609

ISO 8601 (UTC)

2025-11-30T22:26:49+00:00

ISO 8601

2025-11-30T22:26:49+00:00

Builder wisdom

“Talk is cheap. Show me the data.”

— Hal Varian

Quick links

© 2025 OVRO Tools · tools for everyone.