Cron Expression Parser

Parse cron expressions into human-readable descriptions, view field breakdowns, and see upcoming execution times.

🕑 Enter a cron expression above to see its description.
Minute * Any
Hour * Any
Day of Month * Any
Month * Any
Day of Week * Any
Field Values Special Characters
Minute0 – 59* , - /
Hour0 – 23* , - /
Day of Month1 – 31* , - /
Month1 – 12 or JAN – DEC* , - /
Day of Week0 – 7 or SUN – SAT (0 & 7 = Sun)* , - /
Character Meaning Example
*Any value* * * * * — every minute
,List of values1,15 * * * * — at minute 1 and 15
-Range of values0 9-17 * * * — every hour from 9 to 17
/Step values*/10 * * * * — every 10 minutes