Skip to content

Generate UUIDs online

Your UUID:

53ecdbd3-a3df-40ad-aac8-e04791c39bd5

Refresh the page or press Generate for another.

UUID Generator

Format

Bulk generation

Generate up to 1,000 at once and download them as a text file.

What is a version 4 UUID?

A version 4 UUID is a universally unique identifier generated from random numbers. The version 4 UUIDs produced here use a cryptographically secure random number generator, so they’re a safe default for database keys, request IDs, and anywhere you need a collision-resistant identifier.

Frequently asked questions

What is a UUID?

A UUID (universally unique identifier) is a 128-bit value used to label information without a central authority. It's written as 32 hexadecimal digits in five hyphen-separated groups, for example 550e8400-e29b-41d4-a716-446655440000.

Are UUIDs guaranteed to be unique?

Not guaranteed, but collisions are astronomically unlikely. A version 4 UUID has 122 random bits, so you would need to generate billions per second for many years to have a realistic chance of a duplicate.

Which UUID version should I use?

Use version 4 for a simple random identifier, or version 7 if you want IDs that also sort by creation time (handy as database keys). Version 1 is a legacy time-based format; the nil UUID is a placeholder meaning "no value".

What is the difference between a UUID and a GUID?

They are the same 128-bit standard. GUID is Microsoft's name for it; GUIDs are conventionally shown in uppercase and wrapped in braces, e.g. {550E8400-E29B-41D4-A716-446655440000}.

Is this UUID generator free?

Yes. Generating UUIDs here — one at a time, in bulk, or through the API — is completely free and needs no sign-up.

Do you store the UUIDs I generate?

No. Generation is stateless and happens per request. Nothing is logged or stored.