UUID Generator

Generate one or hundreds of random version 4 UUIDs — with uppercase, hyphen and braces options — and copy them in one click.

Options

Version 4 UUIDs, generated locally with a cryptographically secure random source.

About the UUID Generator

This free UUID generator creates random version 4 UUIDs (also called GUIDs) — the 128-bit identifiers used everywhere in software for database keys, API request ids, file names and distributed systems. Generate one or up to a thousand at a time, then copy them all or download them as a text file.

The formatting options cover the variants real systems expect: standard lowercase with hyphens, UPPERCASE, hyphen-free for compact keys, and brace-wrapped {...} GUIDs as used in Windows registries and COM. Toggling an option reformats the current batch, so you never lose the ids you just generated.

Every UUID is produced locally in your browser with the cryptographically secure random source (crypto.randomUUID) — nothing is requested from or sent to any server, so the identifiers are yours alone.

Frequently asked questions

Answers to the questions we hear most about this tool.

What is a UUID?

A UUID (Universally Unique Identifier) is a 128-bit value written as 32 hexadecimal digits in five hyphen-separated groups, like 550e8400-e29b-41d4-a716-446655440000. Microsoft calls them GUIDs — same thing. They let independent systems create identifiers without coordinating with each other.

What is a version 4 UUID?

A version 4 UUID is generated from random data: 122 of its 128 bits are random, and the rest mark the version and variant. This generator uses your browser’s cryptographically secure random source, the standard choice for database keys, session ids and general-purpose identifiers.

Can two UUIDs ever collide?

In theory yes, in practice no. With 122 random bits there are about 5.3 undecillion (5.3 × 10³⁶) possible v4 UUIDs. You would need to generate roughly a billion UUIDs per second for about 85 years to reach even a 50% chance of a single collision, which is why systems treat them as unique.

What is the difference between a UUID and a GUID?

Nothing meaningful — GUID (Globally Unique Identifier) is Microsoft’s name for the same 128-bit standard. GUIDs in Windows are often written in uppercase inside braces, like {550E8400-E29B-41D4-A716-446655440000}; this generator has options for both.

Is this UUID generator free and private?

Yes. It is completely free with no sign-up, and every UUID is generated locally in your browser using crypto.randomUUID — a cryptographically secure source. Nothing is fetched from or sent to any server, and the tool works offline once the page has loaded.