Tool

Cron Expression Parser

Paste a cron expression to see what it means in plain English. Or use the form below to build one from scratch.

Five fields: minute hour day month weekday


0 * * * *

How to Read a Cron Expression

Cron is the standard scheduler on Linux/Unix systems. A cron expression is five fields that define when a job runs — like 0 9 * * 1 meaning "every Monday at 9 AM." CI/CD pipelines, cloud schedulers (Cloud Scheduler, Lambda cron triggers), and task runners all use this format. The problem is that expressions like */15 8-17 * * 1-5 aren't exactly intuitive, which is why a translator helps.

The Five Fields

Field Range Special chars
Minute 0–59 * , - /
Hour 0–23 * , - /
Day 1–31 * , - /
Month 1–12 * , - /
Weekday 0–6 (0 = Sun) * , - /