Frequently asked questions
What is a UUID?
A universally unique identifier: a 128-bit value written as 32 hex digits in five groups, 8-4-4-4-12. Programs create them independently, without coordinating, and they don't clash.
Are these UUIDs random enough to use?
Yes. v4 UUIDs come from crypto.randomUUID and the random bits of v7 from crypto.getRandomValues, the browser's cryptographically secure random number generators.
Should I use UUID v4 or v7 for database keys?
v7 is usually better for primary keys, because new IDs sort after old ones and keep B-tree indexes compact. Use v4 when the ID shouldn't reveal its creation time.
Can I generate UUIDs in bulk?
Yes. Set How many to any number up to 1,000, then copy the list or download it as a text file with one UUID per line.
Are the UUIDs stored or sent anywhere?
No. They are created in your browser and never sent to a server, so nobody else has seen them.