UUID Generator
() → uuidMake random v4 or time-sortable v7 identifiers, one or a thousand.
Generating…inspect a uuid
About UUID Generator
Generate identifiers in bulk, in either of the two versions worth using today. Version 4 is 122 random bits and the safe default when you just need something unique. Version 7 puts a millisecond timestamp in the leading 48 bits, so the values sort chronologically as plain strings — which is what makes them behave far better as a database primary key.
The randomness comes from your browser's cryptographic generator, the same source used for key material, not from Math.random. Paste an existing identifier into the inspector to read back its version and variant, and for a v7 or v1 value, the moment it was created.
Generation happens locally. That is worth knowing for a generator specifically: an identifier handed to you by a remote server is one that server has seen, and if it is going to key anything sensitive, you want to be the only party that ever held it.
Common questions
This page does the work itself, in this tab. Nothing you paste is sent to a server. Close the tab and no copy remains.