Parse and explain cron expressions in human-readable format
Format: minute hour day-of-month month day-of-week
Minute
0-59Minute of the hourHour
0-23Hour of the day (24-hour format)Day of Month
1-31Day of the monthMonth
1-12Month of the yearDay of Week
0-7Day of the week (0 and 7 = Sunday)0 0 * * *
Daily at midnight
0 9 * * 1-5
Weekdays at 9 AM
*/15 * * * *
Every 15 minutes
0 0 1 * *
First day of every month
0 12 * * 0
Sundays at noon
30 2 * * *
Daily at 2:30 AM
0 */2 * * *
Every 2 hours
0 0 * * 6
Every Saturday at midnight
Type or paste a cron expression in the standard 5-field format
Get instant human-readable explanation and field breakdown
Click on common examples to learn different cron patterns
Instant validation and explanation as you type
Field-by-field breakdown with human-readable descriptions
Pre-built examples for common scheduling scenarios
A: A cron expression is a time-based job scheduler format used in Unix-like systems. It consists of 5 fields: minute, hour, day of month, month, and day of week.
A: The */15 syntax means 'every 15 units'. So */15 in the minute field means 'every 15 minutes', while */2 in the hour field means 'every 2 hours'.
A: Yes, but they work with OR logic. If both are specified (not *), the job runs when EITHER condition is met, not both.
Decode and analyze JWT tokens
Generate JWT tokens with custom claims and headers
Build cURL commands with custom headers, methods, and options
Hash passwords using bcrypt with configurable cost factor
Test regular expressions with live highlighting and match details
Convert between UTC, local time, and Unix timestamp
Escape or unescape special characters for JSON/JS strings
Format and validate JSON, XML, YAML, and SQL with syntax highlighting
Encode text to Base64 format
Decode Base64 text to original format
Convert images to Base64 data URLs
Convert Base64 data to images with preview and download
Convert text to ASCII codes and vice versa
Pick solid colors or gradients and copy the CSS value
Interactive color picker with multiple format output
Extract colors from images with pixel-perfect precision
Generate multiple favicon sizes from text, emojis, or images
Parse and explain cron expressions in human-readable format
View and explore JSON data in a tree structure
Generate unique identifiers easily.
Generate various hashes for your input.
Rename multiple files using patterns and download a ZIP
Parse and explain cron expressions in human-readable format
Format: minute hour day-of-month month day-of-week
Minute
0-59Minute of the hourHour
0-23Hour of the day (24-hour format)Day of Month
1-31Day of the monthMonth
1-12Month of the yearDay of Week
0-7Day of the week (0 and 7 = Sunday)0 0 * * *
Daily at midnight
0 9 * * 1-5
Weekdays at 9 AM
*/15 * * * *
Every 15 minutes
0 0 1 * *
First day of every month
0 12 * * 0
Sundays at noon
30 2 * * *
Daily at 2:30 AM
0 */2 * * *
Every 2 hours
0 0 * * 6
Every Saturday at midnight
Type or paste a cron expression in the standard 5-field format
Get instant human-readable explanation and field breakdown
Click on common examples to learn different cron patterns
Instant validation and explanation as you type
Field-by-field breakdown with human-readable descriptions
Pre-built examples for common scheduling scenarios
A: A cron expression is a time-based job scheduler format used in Unix-like systems. It consists of 5 fields: minute, hour, day of month, month, and day of week.
A: The */15 syntax means 'every 15 units'. So */15 in the minute field means 'every 15 minutes', while */2 in the hour field means 'every 2 hours'.
A: Yes, but they work with OR logic. If both are specified (not *), the job runs when EITHER condition is met, not both.