Cron timezone conversion examples you can copy

Use this when you need quick answers like "what is 9am UTC in my timezone" or "which cron should I use for local business hours?"

Examples

  • Daily 09:00 UTC: 0 9 * * * (stable globally, display locally).
  • Weekdays at 09:00 local: use local timezone in scheduler + 0 9 * * 1-5.
  • UTC hourly processing: 0 * * * * avoids DST drift.
Test cron timezone conversions

DST-safe checklist

  1. Preview next runs in both UTC and target local timezone.
  2. Check a known DST transition week.
  3. Document expected run time in alerts and on-call notes.

CTA: Validate before deploy: if exact local wall-clock time matters, test against timezone changes now, not during incident response.