About UUID & Token Generator
Produces a single value or a whole batch, drawn from your browser's cryptographic generator rather than a seeded pseudo-random one. The distinction matters as soon as the value becomes a database key or a session token.
Generate RFC-4122 version-4 UUIDs one at a time or in bulk for database keys, request IDs and idempotency keys. Each is produced by your browser's cryptographic random source and never leaves your device.
Generate RFC-4122 version-4 UUIDs and secure random tokens one at a time or in bulk. UUIDs are 128-bit identifiers with such a vast range that collisions are practically impossible, making them ideal for database keys, request IDs and idempotency keys.
Copy a single identifier or generate hundreds at once. Version 4 is random rather than sequential, which is what makes it safe to expose in a URL but slower as a database primary key than a monotonic id.