Build cron schedules with human-readable descriptions and next run times
A cron expression is a five-field schedule format (minute, hour, day-of-month, month, day-of-week) used in Unix, Linux, and cloud platforms to define when recurring jobs should run. Special characters include * (every), / (step), , (list), and - (range).
Expression
0 * * * *
At minute 0
Next 5 Runs
| Field | Values | Special |
|---|---|---|
| Minute | 0โ59 | * , - / |
| Hour | 0โ23 | * , - / |
| Day (Month) | 1โ31 | * , - / |
| Month | 1โ12 | * , - / |
| Day (Week) | 0โ6 (Sun=0) | * , - / |
Formula
โโโโโโโโโ minute (0โ59) โโโโโโโโโ hour (0โ23) โโโโโโโโโ day of month (1โ31) โโโโโโโโโ month (1โ12) โโโโโโโโโ day of week (0โ6)* = Every value in the field
/ = Step โ e.g., */5 = every 5th value
, = List โ e.g., 1,3,5 = specific values
- = Range โ e.g., 1-5 = values 1 through 5
Worked Example
Run every weekday at 9:30 AM
Did you know? Cron was first introduced in Version 7 Unix in 1979 by Ken Thompson. The modern vixie-cron implementation used in most Linux distributions was written by Paul Vixie in 1987 and remains the standard today (source: IEEE Computer Society).
Sources
Convert text to ASCII codes and back. Supports decimal, hex, binary, and octal formats.
Convert width/height to aspect ratios, scale dimensions, and generate responsive embed CSS for any layout.
Calculate required internet bandwidth based on devices and activities in your household.
Encode and decode Base64 strings. Convert text for data URIs, APIs, and safe data transmission.
Create CSS border-radius with visual controls for each corner. Generate circles, pills, and custom shapes.
Create CSS box shadows with multiple layers, live preview, and copy-ready code.