Convert Timestamp to Date — Unix Timestamp to Date Converter, Date to Unix Timestamp Online

Convert Timestamp to Date

Convert timestamp to date

Unix epoch seconds or milliseconds → human date & time

Detected as seconds · Current Unix time: 1785244381

Date & time

Local date and time

Tuesday, 28 July 2026 at 13:13:01 UTC

UTC date and time

Tuesday, 28 July 2026 at 13:13:01 UTC

ISO 8601

2026-07-28T13:13:01.000Z

RFC 2822 / GMT

Tue, 28 Jul 2026 13:13:01 GMT

Relative

now

Unix timestamp (seconds)

1785244381

Unix timestamp (milliseconds)

1785244381000

Timezone

UTC+00:00 (UTC)

Day of year

209

Week of year

31

Convert date to Unix timestamp

Pick a date and time — get seconds or milliseconds instantly

Date → Unix timestamp (seconds)

1785244381

Date → Unix timestamp (ms)

1785244381000

ویب‌سایټ ته اړتیا لرئ؟

موږ ستاسو د سوداګرۍ لپاره مسلکي ویب‌سایټ ډیزاین کوو.

Online Timestamp to Date Converter

Free tool to convert timestamp to date, convert Unix timestamp to date, and convert date to Unix timestamp. Supports seconds and milliseconds, local and UTC, ISO date/time, and copy-ready results — an online timestamp to date converter for developers and analysts.

Convert timestamp to date
Convert Unix timestamp to date
Convert date to Unix timestamp
Unix timestamp to date converter
Date to Unix timestamp converter
Convert timestamp to date and time
Convert timestamp to date time
Timestamp to date converter
Convert from timestamp to date
Converter timestamp to date
Online timestamp to date converter
Convert timestamp number to date
SQL convert timestamp to date
Excel convert timestamp to date
Python convert timestamp to date
JavaScript convert timestamp to date
Postgres convert timestamp to date
Convert date to timestamp

Frequently asked questions

How do I convert timestamp to date?
Paste a Unix timestamp (for example 1764581115) into the converter. It auto-detects seconds or milliseconds and shows the matching local and UTC date and time, plus ISO 8601 and RFC formats.
How do I convert Unix timestamp to date?
Enter the Unix epoch value in seconds or milliseconds. The Unix timestamp to date converter instantly displays human-readable date and time. You can also convert date to Unix timestamp using the date fields below.
What is the difference between seconds and milliseconds?
Unix timestamps in seconds are usually 10 digits (e.g. 1764581115). Milliseconds are usually 13 digits. This online timestamp to date converter auto-detects the unit, or you can force seconds, milliseconds, microseconds, or nanoseconds.
Can I convert date to Unix timestamp?
Yes. Choose year, month, day, hour, minute, and second (local or UTC). The date to Unix timestamp converter returns both seconds and milliseconds instantly.
Does this work like SQL, Python, Excel, or JavaScript converters?
Yes for the result: you get the same epoch ↔ datetime mapping developers use in SQL, Python, JavaScript, Excel, Google Sheets, Postgres, Oracle, BigQuery, and more. The page also includes common code examples for converting timestamp to date in those environments.

How to convert timestamp to date in code

Need the same conversion in SQL, Python, JavaScript, Excel, Postgres, Oracle, BigQuery, or Google Sheets? Use the online converter above for quick checks, then apply these patterns in your stack.

JavaScript / TypeScript — convert timestamp to date
const ts = 1764581115; // seconds
const date = new Date(ts * 1000);
console.log(date.toISOString());

// date to unix timestamp
Math.floor(Date.now() / 1000);
Python — convert timestamp to date
from datetime import datetime, timezone
ts = 1764581115
print(datetime.fromtimestamp(ts, tz=timezone.utc))

# date to unix timestamp
print(int(datetime.now(tz=timezone.utc).timestamp()))
SQL — convert timestamp to date
-- PostgreSQL / Postgres
SELECT to_timestamp(1764581115);
SELECT EXTRACT(EPOCH FROM NOW());

-- MySQL
SELECT FROM_UNIXTIME(1764581115);
SELECT UNIX_TIMESTAMP(NOW());
Excel / Google Sheets — convert Unix timestamp to date
Excel (seconds → date):
=(A1/86400)+DATE(1970,1,1)

Google Sheets:
=EPOCHTODATE(A1)
or =(A1/86400)+DATE(1970,1,1)

Looking up API convert Unix timestamp 1764581115 to date, SQL convert timestamp to date, Excel convert Unix timestamp to date, or Postgres / Oracle / BigQuery / Snowflake examples? Paste the number above to convert timestamp to date and time instantly, then copy ISO, UTC, or local output for your docs and queries.