Cron Expression: 0 18 * * *

Every day at 18:00 (6 PM).

Field Breakdown

FieldValue
Minute0
Hour18
Day of Month*
Month*
Day of Week*

Common Use Case

End-of-business-day reports.

Sample Fire Times (UTC)

WhenUnix Timestamp
2026-09-17 18:001789668000
2026-09-18 18:001789754400
2026-09-19 18:001789840800
2026-09-20 18:001789927200
2026-09-21 18:001790013600

Sample times computed at build; your scheduler will fire on its own clock.

Equivalents in Popular Schedulers

crontab (Linux/macOS)

0 18 * * * /path/to/your/script.sh

GitHub Actions (.github/workflows/*.yml)

on:
  schedule:
    - cron: '0 18 * * *'

AWS EventBridge (cron format)

cron(0 18 * * *)    # Note: AWS uses 6 fields with year

Kubernetes CronJob

spec:
  schedule: "0 18 * * *"

Other Common Cron Expressions

Need the full converter? Open the Timestamp Converter →