Unix टाइमस्टैम्प से दिनांक कनवर्टर ऑनलाइन — मुफ़्त Epoch
Unix epoch सेकंड और मानव-पठनीय तिथियों के बीच कन्वर्ट करें। मिलीसेकंड, ISO 8601 और स्थानीय समय क्षेत्र समर्थित।
Unix टाइमस्टैम्प (सेकंड या मिलीसेकंड) या ISO तिथि पेस्ट करें — कनवर्टर दोनों रूप साथ-साथ दिखाता है।
Now (seconds)
0
Now (milliseconds)
0
Now (ISO 8601)
सामान्य उपयोग
- 1Translate an exp claim from a JWT into a human-readable expiry time.
- 2Convert a created_at log field into your local timezone for debugging.
- 3Plan cron schedules — confirm an epoch value matches the moment you expect it.
अक्सर पूछे जाने वाले प्रश्न
Why are some timestamps 13 digits and others 10?+
10 digits = seconds since 1970-01-01 UTC. 13 digits = milliseconds. The tool detects both automatically based on length.
Does it handle leap seconds?+
No. Unix time intentionally ignores leap seconds — they are smeared at the OS level. This converter follows the same convention as every standard library.
What timezone is shown?+
ISO 8601 output is always UTC. The "Local" line uses your browser locale and timezone via Intl.DateTimeFormat.