Cron Expression Visualiser + Next Firings
Paste a cron expression (`* * * * *`); see the **5-field breakdown** + **natural-language description** + the **next N firings** (local + ISO + delta). Supports `@daily` / `@hourly` aliases, month / day-of-week names (`jan`, `mon-fri`), step (`*/5`), range (`9-17`), and mixed lists.
📝 at minute 0, 15, 30, 45 of every hour
minute
0-59
hour
0-23
day of month
1-31
month
1-12
day of week
0-6 (Sun=0)
*/15
*
*
*
*
#LocalISO 8601From now
16/24/2026, 11:30:00 PM2026-06-24T23:30:00.000Zin 1m
26/24/2026, 11:45:00 PM2026-06-24T23:45:00.000Zin 16m
36/25/2026, 12:00:00 AM2026-06-25T00:00:00.000Zin 31m
46/25/2026, 12:15:00 AM2026-06-25T00:15:00.000Zin 46m
56/25/2026, 12:30:00 AM2026-06-25T00:30:00.000Zin 1h
66/25/2026, 12:45:00 AM2026-06-25T00:45:00.000Zin 1h
76/25/2026, 1:00:00 AM2026-06-25T01:00:00.000Zin 2h
86/25/2026, 1:15:00 AM2026-06-25T01:15:00.000Zin 2h
›How to use
- Type a 5-field cron in the Cron expression input, or click a preset to start from a common shape.
- The 5-field table breaks down each piece live; syntax issues surface inline in red.
- Natural-language description summarises the schedule in one sentence (e.g.
at 09:00, on Mon, Tue, Wed, Thu, Fri). - Below it, a table lists the next N firings (default 8, 1-50 adjustable): Local time, ISO 8601, and delta from now.
Tips
- Aliases supported:
@yearly/@monthly/@weekly/@daily/@hourly— expanded internally to standard form. - Names accepted: months
jan-dec, weekdayssun-sat(case-insensitive);mon-friworks. - When both DoM and DoW are restricted the rule is OR, not AND (POSIX convention).
0 0 1 * 1fires on the 1st or any Monday. 7in DoW maps to Sunday (Linux cron behaviour).- vs crontab.guru: a great text-only tool. We add live next-firing preview to make it more concrete.
💡 Parsing, description and next-firing computation run entirely in your browser — no network requests. Firings are computed in your local timezone.
Related tools
- JWT decoder / generatorDecode header / payload / expiry, re-sign with secret
- cURL ↔ fetch ↔ Python converterPaste a cURL command → emit fetch / Python requests / HTTPie
- CSS / XPath selector testerPaste HTML + selector → live highlight of matches
- Regex builder & live testerPattern + sample text → live highlight + capture groups