Weekday business hours
Input: 0 9 * * 1-5
Output: At 9:00 AM, Monday through Friday. Next run: 2026-05-11T09:00:00 (local).
500+ fast, free tools. Most run in your browser only; Image & PDF tools upload files to the backend when you run them.
Translate a cron expression into plain English and preview the next scheduled run times with timezone support.
The Cron Expression Describer takes any standard cron expression (5 or 6 field) and translates it into a plain English description, eliminating the need to mentally parse cryptic syntax like '0 9 * * 1-5'. It also previews the next 10 scheduled execution times, so you can verify a cron job will run when expected. The tool supports standard POSIX cron (minute, hour, day, month, weekday), extended 6-field cron with seconds, and common special strings (@daily, @hourly, @weekly, @monthly, @reboot). Timezone-aware previewing lets you confirm the local time of scheduled runs. The describer also flags common cron pitfalls — out-of-range values, ambiguous day-of-week vs day-of-month combinations, and step values that do not divide evenly into the field range — so you can catch bugs before deploying.
Input: 0 9 * * 1-5
Output: At 9:00 AM, Monday through Friday. Next run: 2026-05-11T09:00:00 (local).
Input: */15 * * * *
Output: Every 15 minutes (at minute 0, 15, 30, 45 of every hour). Next 4 runs: 14:30, 14:45, 15:00, 15:15.
Input: 0 0 1 * *
Output: At 00:00 on the 1st day of every month. Next run: 2026-06-01T00:00:00Z.
Input: 0 0 12 ? * MON
Output: At 12:00:00 PM on every Monday. Quartz format detected (6-field).