UUID generator
Create universally unique identifiers: random UUID v4 or time-ordered UUID v7 (RFC 9562) that sort by creation time — ideal for database keys. Generated locally with the browser's cryptographic randomness.
Everything runs in your browser — nothing is sent anywhere
How to use
- 1
Pick v4 or v7 and how many you need.
- 2
Click Generate new for a fresh batch.
- 3
Copy the list.
FAQ
What is the difference between v4 and v7?
v4 is fully random. v7 starts with a millisecond timestamp, so IDs sort chronologically and index better in databases.
Are these UUIDs truly unique?
With 122 random bits the chance of a collision is negligible — you would need to generate billions per second for centuries.
Are they generated on a server?
No. They come from crypto.getRandomValues in your browser and are never transmitted.
Can I generate a lot at once?
Up to 500 per click.
Related tools
Password generatorGenerate strong random passwords with letters, digits and symbols. Set the length, see the strength, copy in one click. Generated locally in your browser.Hash generatorCompute MD5, SHA-1, SHA-256, SHA-384 and SHA-512 hashes of text or files in your browser. Verify checksums without uploading anything.Unix timestamp converterConvert Unix timestamps to human-readable dates and back. Seconds or milliseconds, ISO 8601, UTC, your time zone and relative time. Live clock.