Cron Next Run Calculator
Show the next run times for a cron expression.
A cron expression is easy to write but hard to read at a glance — “so when does it actually run next?” This cron next-run calculator takes a standard five-field expression (minute hour day month weekday), steps forward minute by minute from the current time, and lists the next matching run times. Each result is shown in both your browser's local time and UTC so you can line it up with the server's timezone.
Everything is computed in your browser and nothing is ever sent anywhere. Use it to sanity-check a backup schedule, batch job, or log rotation before you ship the crontab, or to quickly decode an expression a teammate wrote.
| 2026-06-13 14:00 (Sat) | 2026-06-13 14:00 (Sat) UTC |
|---|---|
| 2026-06-13 15:00 (Sat) | 2026-06-13 15:00 (Sat) UTC |
| 2026-06-13 16:00 (Sat) | 2026-06-13 16:00 (Sat) UTC |
| 2026-06-13 17:00 (Sat) | 2026-06-13 17:00 (Sat) UTC |
| 2026-06-13 18:00 (Sat) | 2026-06-13 18:00 (Sat) UTC |
The five cron fields
A standard cron line is five space-separated fields, in order: minute, hour, day of month, month, and day of week.
- Minute: 0–59
- Hour: 0–23
- Day of month: 1–31
- Month: 1–12
- Day of week: 0–7 (both 0 and 7 mean Sunday, 1 is Monday)
Syntax supported in each field
This tool supports the four most common forms.
*— every value of the field (every minute, every hour, etc.)*/n— every n units (*/15means 0, 15, 30, 45)a-b— a range from a to b (9-17means hours 9 through 17)a-b/n— a stepped range (0-30/10means 0, 10, 20, 30)- Comma lists — combine the forms above with commas, e.g.
1,15,30
When day-of-month and weekday are both set
Following classic cron rules, if both day-of-month and weekday are restricted (neither is *), a match occurs when either one matches (an OR). For example, 0 0 13 * 5 runs at midnight on the 13th of every month or on every Friday. Restricting both expecting an intersection will not behave the way you might think, so be careful. To line up the timestamps a job actually wrote against another time zone, the log timestamp converter comes in handy.