Time & Date
Time zones, timestamps, and cron without guesswork
Unix timestamp converter, cron expression parser with next-runs, time zone converter for distributed teams. Built for the 'wait, is that UTC?' moments.
Timestamp Converter
Convert between Unix seconds, milliseconds, ISO 8601, and timezone-aware human dates.
Cron Parser
Parse cron expressions to human language. See next 10 scheduled runs. Browser-only.
Timezone Converter
Convert a time between IANA timezones. Meeting planner across continents. Browser-only.
Crontab Generator
Build cron expressions visually — presets for common schedules, per-field editing, plain-English description, and the next 5 run times. 100% local.
Discord Timestamp Generator
Pick a date and time, get all seven Discord <t:UNIX:STYLE> codes plus a live preview of how each renders — the same code shows different text to readers in different time zones.
Choosing between these tools
Time is where correct-looking code goes wrong quietly. A Unix timestamp has no time zone, a calendar date has no instant, and the gap between the two is responsible for a large share of off-by-one-day bugs.
The timestamp converter reads seconds and milliseconds and tells you which it assumed, because a ten-digit and a thirteen-digit number mean the same moment scaled by a thousand. The time zone converter exists for the question a calendar invite cannot answer: what a fixed instant looks like to someone else, including on the days a DST change makes the arithmetic non-obvious.
The cron pair goes both ways. The parser turns an expression into the next run times in plain language, which is how you catch a schedule that fires every minute instead of every hour. The generator builds the expression from the schedule you describe. Note that @reboot and other shorthands are handled by the cron daemon rather than the five-field syntax.