Free Unix Timestamp Converter Online
Convert Unix timestamps to dates and dates to timestamps. See the live current timestamp updated every second.
الميزات الرئيسية
كل ما تحتاجه في أداة مجانية واحدة
The current Unix timestamp in seconds and milliseconds updates every second.
تحويل الطوابع الزمنية في UTC أو أي من المناطق الزمنية الرئيسية في العالم.
تتم جميع المعالجات محليًا في متصفحك. تبقى بياناتك خاصة.
حول هذه الأداة
Convert between Unix timestamps and human-readable dates in any direction. Supports multiple timezones and shows the live current timestamp updated every second.
الأسئلة الشائعة
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.
إنها طريقة عالمية ومستقلة عن المناطق الزمنية لتمثيل نقطة في الزمن.
Unix timestamps are widely used in databases, APIs, and programming languages.
ما الفرق بين الطوابع الزمنية بالثواني والمللي ثانية؟
A seconds-based Unix timestamp has 10 digits, for example 1700000000.
تحتوي الطابع الزمني المعتمد على المللي ثانية على 13 رقمًا، على سبيل المثال 1700000000000.
JavaScript uses milliseconds by default, while most Unix systems use seconds.
كيف يمكنني تحويل الطابع الزمني إلى تاريخ في JavaScript؟
استخدم new Date(timestamp * 1000) لطابع زمني يعتمد على الثواني.
استخدم new Date(timestamp) لطابع زمني يعتمد على المللي ثانية.
ثم استدعِ .toISOString() أو .toLocaleString() لتنسيق التاريخ.
ما هو الوقت الزمني؟
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.
الوقت الزمني هو المعيار الفعلي لتمثيل الوقت في الحوسبة.