Unix Timestamp Converter - Epoch to Human Readable Date
ה-Epoch הנוכחי מתורגם ל
תאריך | פורמט |
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 |
מהי חותמת זמן Unix?
חותמת זמן Unix היא דרך לעקוב אחר הזמן כסכום מצטבר של שניות. ספירה זו מתחילה מה-Epoch של Unix ב-1 בינואר 1970 ב-UTC. לכן, חותמת זמן Unix היא פשוט מספר השניות בין תאריך מסוים לבין ה-Epoch של Unix. יש לציין גם (תודה על ההערות של מבקרי האתר הזה) כי נקודת הזמן הזו לא משתנה טכנית, לא משנה היכן אתה נמצא בעולם. זה מאוד מועיל עבור מערכות מחשב לעקוב ולמיין מידע מתוארך ביישומים דינמיים ומפוזרים הן באינטרנט והן בצד הלקוח.
Learn more about Unix time and Epoch time concepts.
זמן קריא על ידי בני אדם | שניות |
שעה אחת | 3600 שניות |
יום אחד | 86,400 שניות |
שבוע אחד | 604,800 שניות |
חודש אחד (30.44 ימים) | 2,629,746 שניות |
שנה אחת (365.24 ימים) | 31,556,952 שניות |
מה יקרה ב-19 בינואר 2038?
בתאריך זה, חותמת הזמן של Unix תפסיק לפעול עקב שflow של 32 סיביות. לפני רגע זה, מיליוני יישומים יצטרכו לאמץ מסורת חדשה לחותמות זמן או לעבור למערכות של 64 סיביות שיתנו לחותמת הזמן "קצת" יותר זמן.
Related Programming Tools
Get Unix Time
Learn how to get current Unix timestamp in various programming languages
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.