Cron Expression Parser

Enter a cron expression and get a human-readable explanation. Supports both 5-field (standard) and 6-field (with seconds) formats. Understand exactly when your scheduled jobs will run.

At 09:00 AM, Monday through Friday
Quick Reference:
┌──────────── minute (0–59)
│ ┌────────── hour (0–23)
│ │ ┌──────── day of month (1–31)
│ │ │ ┌────── month (1–12 or JAN–DEC)
│ │ │ │ ┌──── day of week (0–6 or SUN–SAT)
│ │ │ │ │
* * * * *

Special characters: * any   , list   - range   / step   ? no specific (day of month/week)

What is a cron expression?

Cron expressions schedule tasks with five or six fields: minute, hour, day, month, and weekday, with an optional year. They are common in Linux, CI/CD pipelines, and serverless jobs.

When to use this parser

The parser gives human-readable descriptions and next run times, so you can validate a schedule before deploying it.