Cron Parser
Parse and understand cron expressions. Enter a cron schedule to see its meaning and next run times. Need help creating a cron expression? Try our Cron Expression Creator.
Cron Expression Parser
Cron expressions schedule recurring tasks in Unix systems. A pattern like "0 9 * * 1-5" means "9 AM on weekdays." This tool parses expressions and tells you in plain English when they run.
It also shows the next several execution times, so you can verify the schedule matches your intent before deploying to production.
Cron Format
* * * * * │ │ │ │ │ │ │ │ │ └─ Day of week (0-7, Sun=0 or 7) │ │ │ └─── Month (1-12) │ │ └───── Day of month (1-31) │ └─────── Hour (0-23) └───────── Minute (0-59)