Unix Timestamp Converter - Online Epoch & DateTime Tool
Convert Unix timestamps to human-readable dates and vice versa. Supports seconds and milliseconds. Ideal for developers debugging time-related code.
UD5 Toolkit
| Timestamp (s) | Date (UTC) | Note |
|---|---|---|
| 0 | 1970-01-01 00:00:00 | Unix Epoch |
| 946684800 | 2000-01-01 00:00:00 | Y2K |
| 1234567890 | 2009-02-13 23:31:30 | Landmark |
| 1577836800 | 2020-01-01 00:00:00 | New Decade |
| 1640995200 | 2022-01-01 00:00:00 | Recent |
| 2147483647 | 2038-01-19 03:14:07 | 32-bit Limit |
1705334400) → seconds timestamp. 13 digits (e.g., 1705334400000) → milliseconds timestamp. This tool automatically detects the format based on digit count. If you see a 10-digit number, it's seconds; 13 digits is milliseconds. Some systems also use 16-digit (microseconds) or 19-digit (nanoseconds) timestamps — simply divide by 1000 to convert to standard seconds.
const date = new Date(timestamp * 1000); (for seconds) or const date = new Date(timestamp); (for milliseconds). Then use date.toISOString(), date.toLocaleString(), or other Date methods. To get current timestamp: Date.now() (ms) or Math.floor(Date.now() / 1000) (seconds).
datetime.fromtimestamp(ts) for seconds or datetime.fromtimestamp(ts / 1000) for milliseconds. For UTC: datetime.utcfromtimestamp(ts). Modern Python 3.11+ also offers datetime.fromtimestamp(ts, tz=timezone.utc) for timezone-aware results.
2147483647, which corresponds to January 19, 2038 03:14:07 UTC. After this point, the integer overflows and wraps to a negative value, potentially causing date-related bugs. Modern 64-bit systems don't have this issue for billions of years.
Date.now()), Java (System.currentTimeMillis()), and many modern APIs. Always check your API documentation to know which format is expected.
-86400 is December 31, 1969 00:00:00 UTC. This tool supports negative timestamps. Note that very large negative values may exceed the range of JavaScript's Date object (which supports dates from approximately -271,821 to 275,760).
Convert Unix timestamps to human-readable dates and vice versa. Supports seconds and milliseconds. Ideal for developers debugging time-related code.
Convert JSON data structures to clean, human-readable YAML. Indentation and formatting preserved. All processing done locally for your privacy.
Record audio from your microphone and export as a WAV file. Monitor levels. Processed entirely in your browser.
Record audio from your microphone and export as a WAV file. Monitor levels. Processed entirely in your browser.
Enter a MIDI note number (0–127) or a musical note name and get the exact frequency in Hz. Piano keyboard picker.
Convert a JSON array of strings or numbers into a single‑column CSV. Quick data dump. Local.
Connect to a serial device (Arduino, etc.) via the Web Serial API. Send and receive text. No native app needed.
Generate cryptographic key pairs using the Web Crypto API. Export as JWK or raw. No server needed; pure security.
Sing or play an instrument into the mic and see the detected pitch on a real‑time chromatic tuner. Use for practice or ear training.
Trim a video clip and convert it into an animated GIF. Adjust frame rate and size. Processing stays on your computer for privacy.
Paste lyrics and tap while the song plays to embed timestamps. Export as .lrc file for music players. All in browser.
Generate encrypted passwords for .htaccess basic authentication. Create .htpasswd entries using bcrypt, MD5, or SHA. Server admin utility, local compute.
Convert an SVG shape into a CSS mask‑image. Transparent regions become masked. Great for custom image crops. Client‑side.
Run multiple named timers simultaneously for cooking. Presets like pasta, rice, etc. Audio alarm. Works in background.
Write SSML to control pitch, speed, and breaks. Play the generated speech with the browser’s TTS engine. Learn SSML.
Dual-function tool: a precise stopwatch with laps and a configurable countdown timer with alarm sound. Works offline, perfect for activities.
Generate classic retro sound effects (coin, jump, explosion) using oscillators and noise. Play and download as WAV. Web Audio API fun.
Convert between square meters, square feet, acres, hectares, and more. Essential for real estate and land measurements. Instant results, private data.
Fill in container image and ports. Generate a Deployment and Service YAML with best practices. Start your K8s journey.
Generate random license keys or serial numbers in various formats (XXXX-XXXX-XXXX). Useful for software activation testing. Local generation.
Design a custom analog clock face by choosing colors, hands, and numbers. Download as SVG or PNG. For craft or UI design.
Place rectangular pattern pieces on a virtual fabric width to optimize cutting layout and reduce waste. Simple manual drag & drop. Local only.
Write a note encrypted with a passphrase, share the link. Once opened and decrypted, the note is deleted from browser storage. Local only.
Build Apache mod_rewrite rules for redirects or clean URLs. Fill in simple fields and get the .htaccess code.
Add items with category, color, season. Plan outfits. Drag and drop. Stored locally.
An animated hourglass that you can set for any time. Watch the sand flow. Beautiful and calming timer.
View recent earthquakes worldwide on a map. Fetches public USGS GeoJSON feed directly from browser. Real-time data.
Write a function name and get a complete unit test stub with describe, it, and expect. Follows AAA pattern.
Design a custom counter style with symbols, range, and speak‑as. Preview ordered lists with your new style. Export the CSS rule.
Paste a list of URLs or texts and generate QR codes all at once. Download as individual images or a single sheet.