Zaman damgasını okunur saate çevir
SaniyeUnix · saat dilimleri · tarih hesabı
Zaman Dönüştürücü
Unix zaman damgası veya tarih girerek Pekin saati, UTC, seçili saat dilimi, ISO, RFC ve milisaniye sonuçlarını görün. Toplu dönüştürme, zaman farkı ve tarih ekleme çıkarma da desteklenir.

Geçerli Unix zamanı
Tarih ve saati zaman damgasına çevir
Aynı anı saat dilimlerinde karşılaştır
1s önceZaman damgalarını ve tarihleri toplu çevir
Unix zaman damgaları, ISO dizeleri ve seçili dilimde yyyy-mm-dd hh:mm:ss desteklenir.
Zaman farkı ve tarih hesabı
Zaman ekle veya çıkar
01
Yaygın zaman dönüşümleri tek yerde
Timestamp, UTC, saat dilimi tablosu ve tarih hesaplayıcı arasında geçiş yok.
Seconds and milliseconds
10, 13, 16, and 19 digit Unix values are parsed as the common timestamp units.
UTC and Beijing together
Two common baselines for APIs, logs, and China-facing operations appear in one result panel.
Batch conversion
Paste multiple timestamps, ISO strings, or date values and copy a CSV result.
Time difference
Calculate days, hours, minutes, and seconds between two instants for expiry, latency, and billing checks.
Date arithmetic
Add days, hours, and minutes to any base time for deadlines, schedules, and token expiry windows.
Runs in the browser
Conversion happens in the current browser; logs, API values, and business timestamps do not need to be uploaded.
02
Convert in three steps
Enter a timestamp
Paste Unix seconds, milliseconds, microseconds, or nanoseconds. Common lengths are detected automatically.
Choose a time zone
Convert the same instant across Beijing, UTC, New York, London, Tokyo, and other common zones.
Copy the result
Copy Unix seconds, milliseconds, ISO, RFC, or CSV batch output directly.
03
Diller için timestamp örnekleri
Use the converted values to check API payloads, database rows, scripts, and logs.
JavaScriptMath.floor(Date.now() / 1000)new Date(1704067200 * 1000)Pythonint(time.time())datetime.fromtimestamp(1704067200, timezone.utc)PHPtime()date("c", 1704067200)MySQLUNIX_TIMESTAMP(NOW())FROM_UNIXTIME(1704067200)PostgreSQLEXTRACT(EPOCH FROM NOW())to_timestamp(1704067200)Shelldate +%sdate -r 1704067200FAQ
Zaman dönüşümü SSS
Which time zone does a Unix timestamp use?
A Unix timestamp is the number of seconds since 1970-01-01 00:00:00 UTC. It does not carry a time zone; zones only change the displayed calendar text.
What is the difference between 10 and 13 digit timestamps?
10 digits usually means seconds, while 13 digits usually means milliseconds. This tool also handles common 16 digit microseconds and 19 digit nanoseconds.
Is Beijing time UTC+8?
Yes. Beijing time uses the Asia/Shanghai time zone. It currently has no daylight saving time and is normally UTC+08:00.
Is batch conversion uploaded?
No. Values are parsed and formatted in the current browser session.
Why does the same date create different timestamps in different zones?
A wall-clock input like 2026-07-28 09:00 refers to different real instants in different time zones, so the Unix timestamp changes.