Unix zaman damgalarını okunabilir tarihlere ve geri dönüştürün: UTC, yerel, ISO 8601 ve göreli zaman. Saniye ve milisaniye otomatik algılanır.
Zaman damgası nasıl kullanılır
Bir Unix zaman damgası (saniye veya milisaniye) ya da bir tarih girin.
Saniye ve milisaniye otomatik algılanır.
UTC, yerel, ISO ve göreli değerleri okuyun ya da güncel zaman için Şimdi'ye basın.
A Unix timestamp is the number of seconds that have elapsed since 1 January 1970 at midnight UTC, a moment known as the epoch. Because it is just a count from a fixed point in UTC, it represents an exact instant with no time zone attached, which is why logs, APIs and databases love it.
It turns an epoch value into a readable date and a date back into an epoch, showing the result as UTC, your local time, an ISO 8601 string and a human relative description like "3 hours ago". A Now button fills in the current time.
Seconds and milliseconds are detected automatically: a 10-digit number is read as seconds and a 13-digit number as milliseconds, which covers almost everything you will paste from a log or an API response.
Timestamps beat formatted date strings for storage and exchange because they are unambiguous, easy to sort and independent of time zone or locale. The usual pattern is to store the timestamp and convert it to a local, formatted date only when you display it to a person.
ISO 8601 (for example 2026-06-30T14:05:00Z) is the international standard text format for dates and times; the trailing Z means UTC. The relative value is handy for quickly judging how old a log line or record is.
One thing to know: systems that store Unix time in a signed 32-bit integer overflow on 19 January 2038, the so-called Year 2038 problem. Modern 64-bit systems are unaffected. Everything here runs in your browser, so nothing you enter is uploaded.
Sıkça sorulan sorular
İkisi de. 10 haneli sayılar saniye, 13 haneli sayılar milisaniye olarak okunur, böylece otomatik algılamaya güvenebilirsiniz.
UTC ve ISO 8601 mutlaktır; yerel değer tarayıcınızın saat dilimini kullanır.
Bu aracı göm
Bu aracı kendi web sitenize ekleyin. Aşağıdaki kod parçacığını kopyalayın; otomatik olarak güncel kalır.
<iframe src="https://monu.tools/embed/tr/timestamp-converter" width="100%" height="640" style="border:1px solid #e5e5e5;border-radius:12px;max-width:680px" loading="lazy" title="Monu Tools"></iframe>İlgili araçlar
URL'leri ve URL bileşenlerini yüzde kodlayın ve çözün, UTF-8 güvenli.
JSON'u CSV'ye ve CSV'yi tekrar JSON'a dönüştürün, her iki yönde. Ayırıcıyı seçin, tırnaklı alanları işleyin ve sonucu kopyalayın. Her şey tarayıcınızda çalışır.
YAML'ı JSON'a ve JSON'u tekrar YAML'a dönüştürün, her iki yönde. Dönüştürürken doğrular ve net hatalar gösterir. Her şey tarayıcınızda çalışır.
Sayıları ikili, sekizli, ondalık ve onaltılık arasında dönüştürün. Herhangi bir alanı düzenleyin, diğerleri anında güncellenir. Büyük değerler tamdır, yuvarlama yoktur.