Cron Expression Generator
Build cron expressions & see next runs
Pick a schedule with presets and dropdowns, get the cron string, a plain-English description and the next upcoming run times — all in your browser.
Cron expression
* * * * *
Run every minute
- Tue, Sep 1, 2026, 04:24 PM
- Tue, Sep 1, 2026, 04:25 PM
- Tue, Sep 1, 2026, 04:26 PM
- Tue, Sep 1, 2026, 04:27 PM
- Tue, Sep 1, 2026, 04:28 PM
About the cron expression generator
A cron expression is five fields — minute, hour, day-of-month, month and day-of-week — that together describe a repeating schedule. Cron is the standard scheduler on Unix systems and is used by job runners, CI pipelines and cloud schedulers.
Each field accepts a number, a range (1-5), a list (1,3,5), a step (*/15) or * for "every". This generator lets you type a raw expression or build one field by field, then shows a human-readable summary and the next five execution times so you can verify the schedule before deploying.
Field reference
- Minute 0–59 · Hour 0–23
- Day of month 1–31 · Month 1–12
- Day of week 0–6 (Sunday = 0)
How to use the cron expression generator
Pick a preset or edit fields
Start from a common preset, or type each field directly.
Read the description
A plain-English summary explains what the schedule means.
Check the next runs
The next five execution times confirm the schedule is what you want.
Copy the expression
Click Copy to grab the cron string for your crontab or scheduler.
Frequently asked questions
What does * mean in a cron field?
Does this support 6-field or seconds-based cron?
How are the next run times calculated?
What timezone are the next runs shown in?
Is my schedule sent to a server?
I want to…
Common reasons people reach for the cron expression generator — see if it matches your task.
- Build a cron expression from a schedule
- Get a plain-English explanation of a cron string
- See the next upcoming cron run times
- Generate a crontab entry with presets
Related free tools
More free online utilities that pair well with this one — same-category tools for the same task, plus handy extras from other categories.
More developer & security tools
- Regex TesterTest regular expressions against text in real time
- JWT DecoderDecode JSON Web Token header & payload
- YAML to JSON ConverterConvert YAML to JSON and JSON to YAML
- Base64 Encoder / DecoderConvert plain text or images to Base64 strings
- Curl-to-Code ConverterConvert curl commands to fetch, Python & PHP