08. Unix Timestamp Converter

Full epoch converter: live clock, s/ms/µs/ns, date parts, periods, code samples.

Unix epoch (seconds)1786140805
Milliseconds1786140805421
Microseconds1786140805421000
Nanoseconds1786140805421000000

UTC 2026-08-07T22:13:25.421Z · Local Sat Aug 08 2026 03:43:25 GMT+0530 (India Standard Time)

Timestamp → human-readable date

Supports seconds (10 digits), milliseconds (13), microseconds (16), and nanoseconds (19). Auto-detect by default.

Detected unit: s (seconds)
GMT / UTC: Fri, 07 Aug 2026 22:13:25 GMT
ISO 8601:  2026-08-07T22:13:25.000Z
Local:     Sat Aug 08 2026 03:43:25 GMT+0530 (India Standard Time)
Locale:    8/8/2026, 3:43:25 am
Relative:  0 seconds ago
Unix s:    1786140805
Unix ms:   1786140805000
Unix µs:   1786140805000000
Day of year: 219 · Week: 32
Y2K38 risk: Within signed 32-bit range

Date / time parts → timestamp

Unix s:  1786140805
Unix ms: 1786140805000
UTC:     2026-08-07T22:13:25.000Z
Local:   Sat Aug 08 2026 03:43:25 GMT+0530 (India Standard Time)

Date string → timestamp

Input formats: RFC 2822, ISO 8601, D-M-Y, M/D/Y, Y-M-D, and browser-local parsing.

Unix s:  1786140805
Unix ms: 1786140805429
UTC:     Fri, 07 Aug 2026 22:13:25 GMT
ISO:     2026-08-07T22:13:25.429Z
Local:   Sat Aug 08 2026 03:43:25 GMT+0530 (India Standard Time)

Epoch for start & end of year / month / day

Start: 2026-08-07T00:00:00.000Z  →  1786060800
End:   2026-08-07T23:59:59.000Z  →  1786147199

Convert seconds → years, months, days, hours, minutes

0y 0mo 1d 0h 0m 0s

What is the Unix epoch?

The Unix epoch is the number of seconds since 1970-01-01T00:00:00Z (not counting leap seconds). Signed 32-bit systems overflow on 2038-01-19 (the Year 2038 problem).

Human-readableSeconds
1 hour3,600
1 day86,400
1 week6,04,800
1 month (~30.44 days)26,29,743
1 year (365.25 days)3,15,57,600

Code examples (current epoch substituted)

JavaScript
nowMath.floor(Date.now() / 1000)
fromnew Date(1786140805 * 1000).toLocaleString()
Python
nowimport time; time.time()
fromimport time; time.ctime(1786140805)
PHP
nowtime()
fromdate('r', 1786140805);
Java
nowSystem.currentTimeMillis()/1000
fromnew java.util.Date(1786140805*1000L)
C#
nowDateTimeOffset.Now.ToUnixTimeSeconds()
fromDateTimeOffset.FromUnixTimeSeconds(1786140805)
Go
nowtime.Now().Unix()
fromtime.Unix(1786140805, 0)
Ruby
nowTime.now.to_i
fromTime.at(1786140805)
PostgreSQL
nowSELECT EXTRACT(EPOCH FROM now());
fromSELECT TO_TIMESTAMP(1786140805);
MySQL
nowSELECT UNIX_TIMESTAMP(NOW());
fromSELECT FROM_UNIXTIME(1786140805);
SQLite
nowSELECT unixepoch();
fromSELECT datetime(1786140805, 'unixepoch');
Shell
nowdate +%s
fromdate -d @1786140805
PowerShell
now[DateTimeOffset]::Now.ToUnixTimeSeconds()
from[DateTimeOffset]::FromUnixTimeSeconds(1786140805)
Excel
now=(NOW()-DATE(1970,1,1))*86400
from=(A1/86400)+25569 (format cell as date; A1 = epoch seconds, UTC)
About this tool

Convert Unix timestamps in seconds, milliseconds, microseconds, and nanoseconds. Live epoch clock, date-part builder, start/end of day/month/year, duration humanizer, and multi-language code examples — inspired by epochconverter.com, fully client-side.

Dedicated URL for Unix Timestamp Converter on utils.breejeshrathod.com — processing stays in your browser.

unix timestampepoch convertertimestamp to dateepoch timeunix time