UUID Generator
Generate cryptographically random v4 UUIDs, one at a time or in bulk.
About v4 UUIDs
- Each UUID is 128 bits, 122 random, 6 reserved for version and variant.
- Collisions are mathematically possible but practically vanishing, you'd need to generate billions per second for decades to realistically hit one.
- Generated here via
crypto.getRandomValues, cryptographically strong randomness.
Advertisement