Cron Expression Generator
Build cron expressions visually or type one to see a human-readable explanation and the next scheduled run times. Supports wildcards (*), ranges (1-5), steps (*/10), lists (1,3,5), and day/month names.
Every minute
Minute
*
0 – 59
Hour
*
0 – 23
Day (Month)
*
1 – 31
Month
*
1 – 12 / JAN – DEC
Day (Week)
*
0 – 6 / SUN – SAT
Cron Field Reference
A cron expression consists of five space-separated fields. Each field accepts specific values and special characters.
| Field | Allowed Values | Special Characters | Example |
|---|---|---|---|
| Minute | 0-59 |
* , - / |
*/15 = every 15 min |
| Hour | 0-23 |
* , - / |
9-17 = 9am to 5pm |
| Day of Month | 1-31 |
* , - / |
1,15 = 1st and 15th |
| Month | 1-12 or JAN-DEC |
* , - / |
1-6 = Jan through Jun |
| Day of Week | 0-6 or SUN-SAT |
* , - / |
1-5 = Mon to Fri |
Special Characters
| Character | Meaning | Example |
|---|---|---|
* |
Any value (wildcard) | * * * * * = every minute |
, |
List separator | 1,3,5 = values 1, 3, and 5 |
- |
Range | 1-5 = values 1 through 5 |
/ |
Step / interval | */10 = every 10th value |