Online UUID Generator
Generate random v4 or time-ordered v7 UUIDs in your browser using the Web Crypto API. Pick a quantity, format, and copy.
v4 vs v7 in one paragraph
v4UUIDs are 122 bits of cryptographic randomness, the collision probability is astronomically low, and they're the safe default for most applications. v7UUIDs put a 48-bit millisecond timestamp at the start and fill the rest with random bits, so they sort chronologically. That's valuable when the UUID is a database primary key because inserts stay contiguous in the index instead of scattering random pages, which noticeably improves write throughput and index locality on hot tables.
Where the randomness comes from
All generation happens locally in your browser. The tool calls crypto.randomUUID() for v4 when the runtime supports it and falls back to crypto.getRandomValues() otherwise; v7 always uses getRandomValues() for the random bits. Nothing is derived from your device, IP, or account, and nothing is sent to a server.
Related: hash generator, random number generator, and password generator for other in-browser crypto primitives.