Unix Timestamp Converter - الإيبوك to Human Readable Date

أدخل طابع الوقت يدعم طوابع الوقت في يونكس بالثواني، والميلي ثانية، والميكرو ثانية، والنانو ثانية.
الثواني منذ 1 يناير 1970. (UTC)
12:22:33 PM
أدخل تاريخًا ووقتًا
سنة
شهر
يوم
ساعة (24 ساعة)
دقائق
ثواني
الإيبوك الحالي يترجم إلى
تاريخ تنسيق
10/11/2024 @ 1:52am UTC
2024-10-11T01:52:40+00:00 ISO 8601
Fri, 11 Oct 2024 01:52:40 +0000 RFC 822, 1036, 1123, 2822
Friday, 11-Oct-24 01:52:40 UTC RFC 2822
2024-10-11T01:52:40+00:00 RFC 3339

ما هو طابع الوقت في يونكس؟

طابع الوقت في يونكس هو وسيلة لتتبع الوقت كإجمالي متراكم من الثواني. يبدأ هذا العد من الإيبوك في يونكس في 1 يناير 1970 بتوقيت UTC. لذلك، طاب�� الوقت في يونكس هو ببساطة عدد الثواني بين تاريخ معين والإيبوك في يونكس. يجب أيضًا الإشارة (بفضل تعليقات زوار هذا الموقع) إلى أن هذه النقطة الزمنية لا تتغير تقنيًا بغض النظر عن مكان وجودك في العالم. هذا مفيد جدًا للأنظمة الحاسوبية لتتبع وترتيب المعلومات المؤرخة في التطبيقات الديناميكية والموزعة سواء عبر الإنترنت أو على جانب العميل.

Learn more about Unix time and Epoch time concepts.

وقت قابل للقراءة البشرية ثواني
1 ساعة 3600 ثواني
1 يوم 86,400 ثواني
1 أسبوع 604,800 ثواني
1 شهر (30.44 يوم) 2,629,746 ثواني
1 سنة (365.24 يوم) 31,556,952 ثواني

ماذا سيحدث في 19 يناير 2038؟

في هذا التاريخ، سيتوقف طابع الوقت في يونكس عن العمل بسبب تجاوز 32 بت. قبل هذه اللحظة، ستحتاج ملايين التطبيقات إلى اعتماد تقليد جديد لطوابع الوقت أو الانتقال إلى أنظمة 64 بت التي ستمنح طابع الوقت "قليلًا" من الوقت الإضافي.

Related Programming Tools

Get Unix Time

Learn how to get current Unix timestamp in various programming languages

View Code Examples →

Convert to Date

Convert epoch timestamp to human-readable date format

View Code Examples →

Convert to Timestamp

Convert human-readable date to epoch timestamp

View Code Examples →

Frequently Asked Questions

What is Unix Timestamp?

Unix timestamp is the number of seconds that have elapsed since January 1, 1970, 00:00:00 UTC. It's a standard way to represent time in computer systems and programming.

How to convert Unix timestamp to date?

You can convert Unix timestamp to human-readable date using our online converter above, or programmatically using functions like new Date(timestamp * 1000) in JavaScript.

What programming languages support Unix timestamp?

All major programming languages support Unix timestamps including Python, JavaScript, Java, C#, PHP, Ruby, Go, and more. Check our programming examples for specific implementation details.

Is this timestamp converter free?

Yes, our Unix timestamp converter is completely free to use. No registration required, works offline, and supports all major date formats and programming languages.