Free Unix Timestamp Converter Online
Convert Unix timestamps to dates and dates to timestamps. See the live current timestamp updated every second.
Ana Özellikler
Bir ücretsiz araçta ihtiyacınız olan her şey
The current Unix timestamp in seconds and milliseconds updates every second.
Zaman damgalarını UTC veya dünyanın önde gelen zaman dilimlerinden herhangi birinde dönüştürün.
Tüm işlemler yerel olarak tarayıcınızda yapılır. Verileriniz gizli kalır.
Bu Araç Hakkında
Convert between Unix timestamps and human-readable dates in any direction. Supports multiple timezones and shows the live current timestamp updated every second.
Sıkça Sorulan Sorular
What is a Unix timestamp?
A Unix timestamp is the number of seconds that have elapsed since January 1, 1970 at 00:00:00 UTC.
Zaman diliminden bağımsız, bir zaman noktasını temsil etmenin evrensel bir yoludur.
Unix timestamps are widely used in databases, APIs, and programming languages.
Saniye ve milisaniye zaman damgaları arasındaki fark nedir?
A seconds-based Unix timestamp has 10 digits, for example 1700000000.
Milisaniye bazlı bir zaman damgası 13 hanelidir, örneğin 1700000000000.
JavaScript uses milliseconds by default, while most Unix systems use seconds.
JavaScript'te bir zaman damgasını tarihe nasıl dönüştürebilirim?
Saniye bazlı bir zaman damgası için new Date(timestamp * 1000) kullanın.
Milisaniye bazlı bir zaman damgası için new Date(timestamp) kullanın.
Sonra tarihi formatlamak için .toISOString() veya .toLocaleString() çağrısını yapın.
Epoch zamanı nedir?
Epoch time is another name for Unix time. The epoch is the starting point: January 1, 1970.
The terms Unix timestamp, epoch time, and POSIX time all refer to the same concept.
Epoch zamanı, bilgisayarlarda zaman temsilinin de facto standardıdır.