Unix टाइमस्टैंप कनवर्टर — सूत्र
Unix Timestamp
A Unix timestamp counts the number of seconds since January 1, 1970 00:00:00 UTC (the "epoch").
Time Components
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.
हल किया गया उदाहरण
Convert timestamp 1710288000 (~March 13, 2024).
- Days since epoch = 1710288000 / 86400 = 19,795 days
- Approximate year = 1970 + 19795/365.25 = 2024
- This corresponds to approximately March 13, 2024 UTC