Free Unix Timestamp Converter Online
Convert Unix timestamps to dates and dates to timestamps. See the live current timestamp updated every second.
मुख्य विशेषताएँ
एक मुफ्त उपकरण में आपको जो कुछ भी चाहिए
The current Unix timestamp in seconds and milliseconds updates every second.
UTC या दुनिया के किसी भी प्रमुख टाइमज़ोन में टाइमस्टैम्प को रूपांतरित करें।
सभी प्रोसेसिंग आपके ब्राउज़र में स्थानीय रूप से की जाती है। आपका डेटा निजी रहता है।
इस उपकरण के बारे में
Convert between Unix timestamps and human-readable dates in any direction. Supports multiple timezones and shows the live current timestamp updated every second.
अक्सर पूछे जाने वाले प्रश्न
What is a Unix timestamp?
A Unix timestamp is the number of seconds that have elapsed since January 1, 1970 at 00:00:00 UTC.
यह एक सार्वभौमिक, समय क्षेत्र-स्वतंत्र तरीका है, जो समय के एक बिंदु का प्रतिनिधित्व करता है।
Unix timestamps are widely used in databases, APIs, and programming languages.
सेकंड और मिलीसेकंड टाइमस्टैम्प में क्या अंतर है?
A seconds-based Unix timestamp has 10 digits, for example 1700000000.
एक मिलीसेकंड-आधारित टाइमस्टैम्प में 13 अंक होते हैं, उदाहरण के लिए 1700000000000।
JavaScript uses milliseconds by default, while most Unix systems use seconds.
मैं JavaScript में टाइमस्टैम्प को तिथि में कैसे परिवर्तित करूं?
सेकंड-आधारित टाइमस्टैम्प के लिए new Date(timestamp * 1000) का उपयोग करें।
मिलीसेकंड-आधारित टाइमस्टैम्प के लिए new Date(timestamp) का उपयोग करें।
फिर तारीख को प्रारूपित करने के लिए .toISOString() या .toLocaleString() को कॉल करें।
एपोक समय क्या है?
Epoch time is another name for Unix time. The epoch is the starting point: January 1, 1970.
The terms Unix timestamp, epoch time, and POSIX time all refer to the same concept.
एपोक समय कंप्यूटिंग में समय प्रतिनिधित्व के लिए de facto मानक है।