FTJ
← All Tools

Cron Expression Parser Online — Free Cron Translator

Parse cron expressions into human-readable schedules online for free. See next execution times and field descriptions. No signup, instant parsing.

Description

Runs every 5 minutes

Minute*/5Every 5 minutesRestricted
Hour*Every hour
Day*Every day
Month*Every month
Weekday*Every weekday
1Tue, 2026-06-30 13:00Next
2Tue, 2026-06-30 13:05
3Tue, 2026-06-30 13:10
4Tue, 2026-06-30 13:15
5Tue, 2026-06-30 13:20

Quick Reference

* — Any value
5 — Specific value
1-5 — Range (1 through 5)
*/5 — Every 5th value
1,3,5 — List of values
1-10/2 — Every 2nd from 1-10

Parse cron expressions into human-readable schedules. Enter a cron pattern and see when it will run, with the next few execution times displayed.

How to use Cron Expression Parser Online — Free Cron Translator

  1. Enter a cron expression (e.g., '0 9 * * 1-5' for 9 AM on weekdays).
  2. See the human-readable description of the schedule.
  3. View the next scheduled execution times.

Features

  • Parses standard 5-field cron expressions.
  • Shows human-readable description (e.g., 'At 09:00 on Monday through Friday').
  • Displays next 5 execution times.
  • Supports special characters: *, /, -, and commas.

FAQ

What do the 5 fields in a cron expression mean?

From left to right: minute (0-59), hour (0-23), day of month (1-31), month (1-12), day of week (0-7, where 0 and 7 are Sunday). An asterisk (*) means 'every value in this field'.

How do I run a job every 15 minutes?

Use '*/15 * * * *'. The */15 in the minute field means 'every 15 minutes starting from 0'. So the job runs at :00, :15, :30, and :45 every hour.

What is the difference between cron and crontab?

Cron is the scheduling daemon. Crontab is the file that contains the schedule entries. A single entry in a crontab file is called a cron job or cron expression.

Related Articles

Related Tools