محول الطابع الزمني

رائج 🔥

تحويل طوابع Unix إلى تواريخ

كيفية استخدام محول الطابع الزمني

  1. 1أدخل طابع Unix أو تاريخًا مقروءًا
  2. 2اختر دقة الوقت (ثانية / ملي ثانية)
  3. 3راجع جميع تمثيلات الوقت

حول محول الطابع الزمني

محوّل الطوابع الزمنية هو أداة تحوّل بين طوابع Unix/Epoch والتواريخ والأوقات المقروءة. يدعم التحويل بالملي ثانية والثانية مع دعم المناطق الزمنية. لا غنى عنه لمطوري الخلفية وتحليل السجلات.

المميزات الرئيسية لـ محول الطابع الزمني

  • تحويل ثنائي الاتجاه Unix↔تاريخ
  • دعم الملي ثانية والثانية
  • عرض الوقت الحالي
  • دعم المناطق الزمنية
  • صيغ ISO 8601 وUTC
  • Works entirely in-browser using the JavaScript Date API
  • One-click copy for each output format
  • Relative time display (e.g., "3 days ago" or "in 2 hours")

أمثلة

تحويل طابع Unix

تحويل طابع Unix إلى تاريخ

المدخلات

1716825600

النتيجة

2024-05-27 16:00:00 UTC

Get the Unix timestamp for a specific date

Find the timestamp to use as a parameter in an API query.

المدخلات

2024-01-01 00:00:00 UTC

النتيجة

Seconds: 1704067200 | Milliseconds: 1704067200000

حالات الاستخدام الشائعة

  • تحليل سجلات الخادم
  • تصحيح أخطاء APIs
  • حساب الفروق الزمنية
  • العمل مع قواعد البيانات
  • تحليل بيانات الأحداث
  • Converting timestamps for use in SQL queries with date comparison operators

استكشاف الأخطاء

نتيجة في عام 1970 أو بعيدة جدًا

الحل

ربما تخلط بين الثواني والملي ثانية — جرّب تغيير الوحدة

اختلاف في المنطقة الزمنية

الحل

تأكد من اختيار المنطقة الزمنية الصحيحة — طوابع Unix تُخزَّن بتوقيت UTC

Negative timestamp value

الحل

Negative Unix timestamps represent dates before January 1, 1970. For example, -86400 represents December 31, 1969. These are valid and handled correctly by the tool.

الأسئلة الشائعة

ما هو طابع Unix؟

عدد الثواني (أو الملي ثانية) منذ 1 يناير 1970 UTC — معيار عالمي لتخزين الوقت.

هل تدعم تواريخ قبل 1970؟

نعم، الطوابع السالبة تمثل تواريخ قبل epoch.

What is the Unix epoch?

The Unix epoch is the reference point for Unix timestamps: January 1, 1970, 00:00:00 UTC. All timestamps are the number of seconds (or milliseconds) counted from this moment.

What is ISO 8601 format?

ISO 8601 is an international standard for representing dates and times as strings, for example: 2023-11-14T22:13:20.000Z. The Z suffix indicates UTC. It is widely used in APIs, JSON, and log files.

Can Unix timestamps represent dates before 1970?

Yes. Negative timestamps represent dates before January 1, 1970. For example, -86400 is December 31, 1969. Both positive and negative timestamps are fully supported.

What is the maximum Unix timestamp value?

The maximum 32-bit signed Unix timestamp is 2,147,483,647, which corresponds to January 19, 2038. This is the "Year 2038 problem" for 32-bit systems. JavaScript uses 64-bit integers, supporting timestamps far beyond this date.

Is my data sent to a server?

No. All timestamp conversion is performed locally in your browser using the JavaScript Date object. No data is transmitted or stored.

Can I get the timestamp for a specific timezone?

Unix timestamps are always UTC. To work with timezone-specific times, use the Timezone Converter to adjust the display. Timestamps themselves are timezone-agnostic — only the human-readable representation changes by timezone.