Kostenloser Unix-Zeitstempel-Umrechner
Wandeln Sie Unix-Zeitstempel in Datumsbestandteile um. Kostenloser Epochenzeit-Umrechner.
Days Since Epoch
19,795 days
Formel
## Unix Timestamp A Unix timestamp counts the number of seconds since January 1, 1970 00:00:00 UTC (the "epoch"). ### Time Components - **1 day** = 86,400 seconds - **1 hour** = 3,600 seconds - **1 minute** = 60 seconds ### Approximate Year **Year = 1970 + floor(timestamp / 31,557,600)** (Using average year length of 365.25 days) Note: This is an approximation. For exact date conversion, use a programming language date library.
Lösungsbeispiel
Convert timestamp 1710288000 (~March 13, 2024).
- 01Days since epoch = 1710288000 / 86400 = 19,795 days
- 02Approximate year = 1970 + 19795/365.25 = 2024
- 03This corresponds to approximately March 13, 2024 UTC
Häufig Gestellte Fragen
What is the Unix epoch?
The Unix epoch is January 1, 1970 at 00:00:00 UTC. All Unix timestamps are measured as seconds from this date. Negative timestamps represent dates before 1970.
What is the Year 2038 problem?
Systems using 32-bit signed integers for timestamps will overflow on January 19, 2038. The maximum 32-bit value is 2,147,483,647 seconds. Most modern systems use 64-bit timestamps to avoid this.
Lernen