UUID Generator
Generate v4 (random) or v7 (time-ordered) UUIDs, one or a thousand at a time.
What it does
Generates RFC 9562 UUIDs in your browser using the cryptographically secure random source. Supports v4 (fully random) and v7 (time-ordered: sortable by creation time, ideal for database keys).
How to use it
Pick a version and a count, hit Generate, and copy the result. Generate up to 1000 at once. The options are stored in the URL so you can bookmark your preferred setup.
Why this one
No ads, no artificial caps on how many you can generate, and nothing is requested from a server. The IDs are generated locally and never logged anywhere.
FAQ
- Are these UUIDs cryptographically random?
- Yes. Randomness comes from crypto.getRandomValues, the same secure source used for key generation.
- When should I use v7 instead of v4?
- Use v7 when IDs will be database keys or need to sort by creation time, since the timestamp prefix keeps indexes efficient. Use v4 when you want no information leakage at all.
- Can anyone else see the generated IDs?
- No. Generation happens entirely on your device; the page makes no network requests with your data.