This tool converts a human-readable date into a Unix timestamp in seconds. It provides flexible options based on different date templates, so you can select the processing mode that best matches the format of your date. The tool automatically assumes "00:00:00" if no time is provided. Supported formats include variations commonly found in Excel and other data sources.
Examples:
Standard English Format
Converts "March 26, 2025 10:30:00" to a Unix timestamp.
Before:
March 26, 2025 10:30:00
After:
1740013800
ISO Format
Converts "2025-03-26T10:30:00" to a Unix timestamp.
Before:
2025-03-26T10:30:00
After:
1740013800
MM/DD/YYYY Format
Converts "03/26/2025 10:30:00" to a Unix timestamp.
Before:
03/26/2025 10:30:00
After:
1740013800
DD/MM/YYYY Format
Converts "26/03/2025 10:30:00" to a Unix timestamp.
Before:
26/03/2025 10:30:00
After:
1740013800
DD-MMM-YYYY Format
Converts "26-Mar-2025 10:30:00" to a Unix timestamp.
Before:
26-Mar-2025 10:30:00
After:
1740013800