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 dates between Hijri and Gregorian using the Umm al‑Qura algorithm. Approximate local moon sighting may vary.
Convert any text to upside down (flipped) characters using Unicode mappings. Copy and paste to social media. 100% local, no data sent.
Enter CMYK values and find the closest Pantone Solid Coated color. For print design reference. Client‑side lookup.
Enter any date and get its ISO week number, plus the start and end dates of that week. Quick reference.
Pick any emoji and download it as a high‑resolution PNG image with transparent background. For social media or icons.
Convert hex or RGB to CIELAB L*a*b* values. Understand perceptual lightness and color opponents. Local math.
Convert currencies using a built‑in table of approximate fixed rates. Useful for quick estimates without live data. Local.
Convert Markdown to styled HTML that retains formatting when pasted into Google Docs or Word. Headings, bold, lists. Client‑side.
Convert any image into colored ASCII art using divs with background colors. Creates a stunning text‑based replica. View & copy HTML.
Type or paste Korean Hangul and see the revised romanization. Also works backwards for basic words. Study aid.
Create .srt subtitle files manually by adding lines and setting times with a simple player. Download the result. Local.
Enter any date and instantly know which quarter it belongs to. Also shows fiscal quarter if start month set.
Enter a Kelvin value (1000‑40000) and see the approximate white‑balance color. Photography and lighting reference.
Convert a numeric amount into English words, perfect for writing checks or legal documents. Supports USD/GBP styles.
Calculate the exact number of days, weeks, months, and workdays between two dates. Visual calendar highlights. Perfect for projects.
Convert between Gregorian and Hijri (Islamic) dates. Approximate visual reference. Local algorithm.
Convert a Gregorian calendar date to its Julian Day Number and vice versa. Used in astronomy and mainframe computing.
Encode short audio clips into Base64 data URIs for direct embedding in HTML5 <audio> tags. No external files needed.
Translate between binary and Gray code (reflected binary code). See the bit changes. Useful for digital logic.
Encode decimal integers into signed magnitude binary representation and decode back. Learn computer arithmetic.
Convert any date into Roman numerals (day‑month‑year) for tattoos or special occasions. Clean and local.
Convert minutes to decimal hours and vice versa. Essential for billing and payroll. Instant conversion with a handy chart.
Find what day of the week any past or future date falls on. Uses Zeller’s congruence. Fun historical reference tool.
Find the date of Easter Sunday for any given year. Learn about the computus algorithm. Simple and accurate.
Convert between units of absorbed dose and equivalent dose (Gray, Rad, Rem, Sievert). Educational and reference. Local calculation.
Convert torque units between Newton-meter, foot-pound, inch-pound, and more. Essential for mechanics and engineers. Instant local conversion.
Convert audio files between popular formats like WAV, MP3, and OGG directly in the browser. No upload, fast encoding using WebAudio and ffmpeg wasm.
Convert between common pressure units: Pascal, Bar, PSI, atmosphere, and Torr. Useful for engineering and weather enthusiasts. Local calculation.
Convert any image into beautiful ASCII art. Adjust brightness and character set for the best effect. Share text-based pictures. Runs entirely in the browser.