Parse and explain cron expressions. See human-readable descriptions and next scheduled run times. Built for developers and technical teams who need fast, accurate, repeatable workflows.
| Field | Values | Special Characters |
|---|---|---|
| Minute | 0-59 | * , - / |
| Hour | 0-23 | * , - / |
| Day of Month | 1-31 | * , - / ? |
| Month | 1-12 | * , - / |
| Day of Week | 0-6 (Sun=0) | * , - / ? |
Cron expressions are used to schedule recurring tasks in Unix-like systems. A standard cron expression has 5 fields: minute (0-59), hour (0-23), day of month (1-31), month (1-12), and day of week (0-6, where 0 is Sunday).
Special characters include * (any value), , (list separator), - (range), and / (step values). For example, '0 9 * * 1-5' means 'at 9:00 AM, Monday through Friday'.
Enter a cron expression (5 parts separated by spaces).
View the human-readable explanation.
Check the next scheduled runs.
Developer utilities