Time
Unix Timestamp Converter
Convert between Unix timestamps and dates. Seconds or milliseconds, local time or UTC.
Generators
Build a cron expression from minute, hour, day, month, and weekday, with a plain-language explanation.
LocalProcessed locally — schedules are built in your browser.
Available actions: copy.
Standard 5-field cron only (minute hour day month weekday). Not Quartz, AWS, or 6-field cron.
Cron expression
0 9 * * *
Pick a common pattern such as every minute, hourly, daily, weekly, or weekdays. Add a time or weekday when the form asks for it.
The cron generator writes a standard 5-field expression: minute hour day-of-month month day-of-week. It also explains that same subset in plain language.
Load a common cron schedule such as weekdays at 9 AM. V1 does not read Quartz, AWS, or 6-field cron.
* * * * * runs every minute.
0 * * * * runs at the start of every hour.
0 0 * * * runs at 12:00 AM every day.
0 9 * * * runs at 9:00 AM every day.
0 9 * * 1 runs at 9:00 AM every Monday. Weekday 0 is Sunday in this generator.
0 9 * * 1-5 runs at 9:00 AM every Monday through Friday.
Time
Convert between Unix timestamps and dates. Seconds or milliseconds, local time or UTC.
Text & Query
Test regular expressions against sample text in your browser. Invalid patterns cannot crash the page.