Every 5 minutes
Input
*/5 * * * *
Output
Runs every 5 minutes
Convert cron expressions into plain-language timing and calculate upcoming runs.
Supports 5/6/7-field formats, timezone selection, and copy-ready output.
Input
*/5 * * * *
Output
Runs every 5 minutes
Input
0 9 * * 1-5
Output
Runs at 09:00 on weekdays (Mon-Fri)
Input
0 30 2 * * *
Output
Runs daily at 02:30:00
*/10 * * * *
Common pattern for recurring checks and polling jobs.
0 * * * *
Use when you want an hourly trigger at exact hour boundary.
0 9 * * 1-5
Typical business-day schedule.
0 0 * * 0
Typical weekly maintenance window.
0 0 1 * *
Common monthly batch schedule.
0 0 1 1 *
Useful for annual rollover tasks.
Start with 5 fields (minute hour day month weekday). If your expression includes seconds, switch to 6 fields.
It supports standard syntax (`*`, `/`, `-`, `,`). For implementation-dependent tokens like `L`, `W`, `#`, `?`, it shows a warning.
Yes. It calculates and displays the next N runs (5/10/20) with timezone support.