Developer Tools
Set a date range and generate a batch of random dates with their Unix timestamps, ready to paste into test fixtures or seed data.
Test fixtures, seed data, and demo datasets all tend to need dates that are plausible but arbitrary — this generates real calendar dates uniformly across whatever range you set, each with its Unix timestamp (seconds and milliseconds) and ISO 8601 string alongside it, so you can paste straight into a test file or database seed script without reformatting.
Generation happens entirely in your browser using Math.random() — it's fine for test data and sampling, but if you need cryptographically secure randomness for anything security-sensitive, this isn't the right tool for that.
Related
Check any one generated date across every common format.
Convert a whole list of timestamps at once, export CSV.
Double-check a generated or hand-written string is well-formed.