Cron Expression Humanizer

CRON 표현식을 사람이 읽을 수있는 설명으로 변환하고 다음 실행 시간을 예측합니다.

Choose between 5-field standard format or 6-field extended format with seconds
상태:
유효한
Load a random sample cron expression to test
Clear the cron expression input and results

크론 표현

5 필드 형식 (왼쪽에서 오른쪽) :

분:0-59
시간:0-23
매월:1-31
월:1-12
요일:0-7 (0 및 7 = 일요일)

인간 설명

사람이 읽을 수있는 설명이 여기에 나타납니다 ...

크론 발현 안내서

특수 문자

* - 모든 값 (와일드 카드)
? - 특정 값 없음 (일일 필드 만)
- - 값 범위 (예 : 1-5)
, - 값 목록 (예 : 1,3,5)
/ - 단계 값 (예 : */2)

일반적인 예

0 9 * * 1-5 - 평일 오전 9시
30 14 1 * * - 월 1 일 오후 2시 30 분
0 */6 * * * - 6 시간마다
0 0 * * 0 - 자정에 매주 일요일

Cron Expression Humanizer - Cron Job Scheduler Tool

Cron expressions define schedules using compact syntax. This page translates cron into human‑readable text and helps you validate when jobs will run, including edge cases across timezones.

What is a cron expression?

A standard 5‑field cron uses minutes, hours, day of month, month, and day of week. Extended formats add seconds or year. Wildcards, ranges, lists, and step values control frequency—for example, 0 0 * * 1 runs every Monday at midnight.

How humanization works

The tool parses your expression, expands fields into actual run times, and renders a friendly description. It highlights conflicts, shows upcoming run instances, and can simulate different timezones so you see the real behavior in production.

About the Cron Humanizer

Use it to review schedules during code review, communicate timing to non‑technical stakeholders, and ensure that daylight saving transitions won’t break expectations.

Readable schedules reduce operational toil. Document intent alongside expressions and verify edge cases before deploying.