Cron Expression Parser

Parse cron expressions into human-readable descriptions and see the next scheduled run times.

0 * * * *
At the start of every hour

Next 5 Scheduled Runs

Common Presets

Ad space - AdSense banner will appear here

About Cron Expression Parser

This free online cron expression parser helps you understand and build cron schedules. See human-readable descriptions and upcoming run times for any cron expression. All processing happens in your browser.

Cron Syntax

A standard cron expression has 5 fields:

┌───────────── minute (0-59)
│ ┌───────────── hour (0-23)
│ │ ┌───────────── day of month (1-31)
│ │ │ ┌───────────── month (1-12)
│ │ │ │ ┌───────────── day of week (0-7, 0 and 7 = Sunday)
│ │ │ │ │
* * * * *

Special Characters

Common Use Cases

FAQ

What's the difference between 5-field and 6-field cron?

Standard Unix cron uses 5 fields (minute through day-of-week). Some systems add a 6th field for seconds. This tool uses the standard 5-field format.

Can I use names instead of numbers?

Some cron implementations support month names (JAN-DEC) and day names (SUN-SAT). This tool supports numeric values for maximum compatibility.