Cron Next Runs
Parses standard 5-field cron (`minute hour day month weekday`) with ranges (`1-5`), lists (`1,3,5`), steps (`*/15`), and month / weekday aliases (`mon`, `jan`). The result list shows the next runs starting from now (or a fixed timestamp), in your local timezone. When both day-of-month and day-of-week are restricted, either match counts as a hit — matching the original Vixie cron semantics.
- #18/21/2026, 9:00:00 AM
- #28/24/2026, 9:00:00 AM
- #38/25/2026, 9:00:00 AM
- #48/26/2026, 9:00:00 AM
- #58/27/2026, 9:00:00 AM
- #68/28/2026, 9:00:00 AM
- #78/31/2026, 9:00:00 AM
- #89/1/2026, 9:00:00 AM
Times are in your local timezone — same one your browser is set to.
How to use
- Type a cron expression. The default `0 9 * * 1-5` means 9 AM on weekdays.
- Optionally set a different start time — useful for back-calculating from a past anchor or projecting from a future date.
- Pick how many upcoming runs to list (up to 50).
Frequently asked questions
- Is `1 * * * *` once a day or once an hour?
- Once an hour, at minute 1 of every hour. The first field is the minute — a literal value means "only when the clock reaches this value", and the other fields default to `*` (any). To run once a day at 1 AM, you'd write `0 1 * * *`.
- What's the deal with day-of-month vs weekday?
- When both fields are something other than `*`, cron treats them as OR: the job runs if either condition matches. `0 0 1 * 1` fires on the 1st of every month and on every Monday. If you want AND, you have to enforce it inside the job itself.
- Does this support 6-field (with seconds) or quartz cron?
- Not yet — this is plain Unix cron, 5 fields starting from the minute. Quartz introduces a seconds field and additional features like `L`, `W`, and `#`.
Guides on this topic
Related tools
Cron Expression Explainer
Translate a cron expression into plain English (or your language) and break down each field.
Cron Expression Builder
Build a cron expression by clicking — hourly, daily, weekly, monthly, or fully custom — pairs with the Cron Explainer.
Birthday Countdown
Type a birthdate, get a live ticking countdown to the next birthday — plus exact age, days since born, hours lived, and the rare golden birthday year.
Moon Phase Calculator (Illumination, Age, Next Full/New)
Pick any date and get the lunar phase name, illumination percentage, age in days since the last new moon, an SVG illustration of the current crescent / gibbous shape, and the dates of the next new moon and full moon — over a customisable look-ahead window.
Recurring Event Calculator
Pick a pattern (weekly, every Nth weekday of the month, on the same day of month, every N days) and see the next N actual dates.
D-Day Calculator
Count the days between two dates, or the countdown to a target date.