Cron

Cron expression explainer

Type a five-field cron expression to see its plain-English meaning and the next five timezone-aware runs.

Meaning

Every 5 minutes

Run 1 · Asia/Shanghai
Jun 27, 2026, 22:30:00 GMT+8
2026-06-27T14:30:00.000Z
Run 2 · Asia/Shanghai
Jun 27, 2026, 22:35:00 GMT+8
2026-06-27T14:35:00.000Z
Run 3 · Asia/Shanghai
Jun 27, 2026, 22:40:00 GMT+8
2026-06-27T14:40:00.000Z
Run 4 · Asia/Shanghai
Jun 27, 2026, 22:45:00 GMT+8
2026-06-27T14:45:00.000Z
Run 5 · Asia/Shanghai
Jun 27, 2026, 22:50:00 GMT+8
2026-06-27T14:50:00.000Z

Common cron schedules

Cron Expression Explainer: definition and examples

A five-field cron expression describes a recurring schedule using minute, hour, day of month, month, and day of week fields.

When to use this tool

  • Understand unfamiliar production cron jobs.
  • Preview the next five run times before deployment.
  • Copy common schedules such as every five minutes or every weekday at 9 AM.

How to use it

  1. Enter a five-field cron expression.
  2. Choose the scheduler time zone.
  3. Read the plain-English explanation and inspect upcoming runs.

Example

The expression */5 * * * * means every five minutes.

Frequently asked questions

What does */5 * * * * mean?

It means every five minutes, at minute 0, 5, 10, 15, and so on.

What is the order of cron fields?

The field order is minute, hour, day of month, month, and day of week.

Why does cron time zone matter?

A daily or weekly job can shift relative to UTC when a local time zone enters or leaves daylight saving time.

Related tools