Date & Time Format
Convert and validate dates into any format that suits you online. Bulk conversion is supported.
Convert and validate dates into any format that suits you online. Bulk conversion is supported.
| Format | Value |
|---|---|
|
Was this conversion helpful?
Format not recognized. Try a different input.
Paste a date or timestamp — from a log file, a spreadsheet, or an API response — and the tool identifies the format: ISO 8601, Unix timestamp, RFC 3339, Excel serial number, and dozens more.
| Format | Masks |
|---|---|
| ISO 8601 | date_time_tz, date_time_utc, date_only, compact |
| Unix Timestamp | seconds, milliseconds |
| RFC 3339 | utc, offset |
| RFC 2822 | — |
| ISO 9075 | date, datetime |
| SQL DATE / DATETIME | date, datetime |
| Excel Serial Date | date, datetime |
| Windows Filetime | — |
| Julian Date (JD) | integer, fractional |
| Tire DOT Code | — |
| Mac Timestamp | — |
| Human Readable / Text Date | date, datetime |
| Chinese Date | date, datetime |
| .NET Ticks | — |
| Locale / human-readable date | date, datetime |
| US Date (month-first) | date, datetime |
| OLE Automation Date (VBA/COM) | date, datetime |
| NTP Timestamp | — |
| GPS Time | — |
| MongoDB ObjectId | — |
| PDF Date | local, utc_or_offset |
| Microsoft JSON Date (WCF) | — |
The tool is a universal converter and recognizes a wide range of formats:
Yes. The service understands phrases such as now (current time) and yesterday and converts them to precise ISO 8601 values.
Yes. Bulk conversion is supported. Paste a long list or a fragment from a log file and the system will try to detect and convert each value.
Yes. Dates can be extracted from strings such as:
DateTime: 2026-03-03T22:14:47…12-10-2025_20-06-42 FileImport Start Time (UTC+0): 2025-04-28…Paste the numeric value (e.g. 1.32641938014656E+16) or the hexadecimal form (e.g. B5E27B0AE8BBD601). The service detects Microsoft Filetime and shows the corresponding date and time.
Yes. It handles numeric offsets (e.g. +07:00, -05:00) and zone abbreviations such as UTC, GMT, PDT, or JST.
If the input does not contain a recognizable date (e.g. random letters like 4qweqwer), the API returns false to indicate that conversion is not possible.
Yes. Many users ask things like “2026-02-28T00:03:46.750Z — what time is that in Brazil?” or want conversion to “Sydney time”. The tool helps map global time to local time.
| Endpoint | Method | Notes |
|---|---|---|
| /api/v1/parse | POST | Parses a date/time string and returns possible formats and conversions. |
{
"input": "2026-03-18T12:34:56Z"
}
{
"ok": true,
"results": [
{
"format": "ISO 8601",
"mask": "YYYY-MM-DDTHH:mm:ssZ",
"representations": [
{ "label": "ISO 8601", "value": "2026-03-18T12:34:56Z" }
]
}
]
}