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.
Create .srt subtitle files manually by adding lines and setting times with a simple player. Download the result. Local.
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.
Number each line of your text sequentially. Customize start number and format. Useful for code snippets, tutorials, and document review. Private operation.
Generate cryptographic key pairs using the Web Crypto API. Export as JWK or raw. No server needed; pure security.
Connect to a serial device (Arduino, etc.) via the Web Serial API. Send and receive text. No native app needed.
Paste a phone number and format it according to the E.164 standard. Identify country and detect common typos. Local parser.
Dual-function tool: a precise stopwatch with laps and a configurable countdown timer with alarm sound. Works offline, perfect for activities.
An animated hourglass that you can set for any time. Watch the sand flow. Beautiful and calming timer.
Run multiple named timers simultaneously for cooking. Presets like pasta, rice, etc. Audio alarm. Works in background.
Convert an SVG shape into a CSS mask‑image. Transparent regions become masked. Great for custom image crops. Client‑side.
Upload a photo to create a numbered painting canvas with color swatches. Print and paint. Local only.
Fill in container image and ports. Generate a Deployment and Service YAML with best practices. Start your K8s journey.
Convert between square meters, square feet, acres, hectares, and more. Essential for real estate and land measurements. Instant results, private data.
Generate random license keys or serial numbers in various formats (XXXX-XXXX-XXXX). Useful for software activation testing. Local generation.
Generate classic retro sound effects (coin, jump, explosion) using oscillators and noise. Play and download as WAV. Web Audio API fun.
Paste a list of URLs or texts and generate QR codes all at once. Download as individual images or a single sheet.
Flip images vertically or horizontally, and rotate in 90° increments. Quick and simple editing right in the browser. Download the corrected image instantly.
Paste start and end SVG paths with the same number of points and preview a smooth morph animation. Copy SMIL code.
Generate custom placeholder images for mockups and layouts. Specify dimensions, colors, and text. Export as PNG or use the generated data URI. Entirely browser-based.
Design a custom counter style with symbols, range, and speak‑as. Preview ordered lists with your new style. Export the CSS rule.
Design custom unordered and ordered lists with images, strings, or counters. Preview and copy the CSS.
Build an accessible modal using the native <dialog> element. Customize backdrop, content, and open/close logic. Copy the code.
Adjust opacity visually with a slider and see the different CSS representations (opacity property vs RGBA/HSLA). Copy best option.
Generate a grey placeholder image with custom text and dimensions. Data URI output. No external service.
Generate the next sequential invoice number with optional prefix and date stamp. Keep track locally or export.
Generate a subtle or heavy noise/grain texture as a CSS background. Adjust intensity and color. Copy the small code.
Combine random character, setting, conflict, and genre to generate unique story prompts. Over 10,000 possible combinations. Perfect for overcoming writer's block.