Encode / Decode

UUID Generator

Generate one or many random v4 UUIDs instantly — choose lowercase, UPPERCASE, no-dashes or braces format. Cryptographically secure, all in your browser.

Open UUID Generator →
Looks like you're using an ad blocker. Devbin is free — ads help keep it running.

What is a UUID?

A UUID (Universally Unique Identifier) is a 128-bit value represented as 32 hexadecimal characters grouped as 8-4-4-4-12. Version 4 UUIDs use cryptographically secure random bits, making them statistically unique across all systems and time.

Example: 550e8400-e29b-41d4-a716-446655440000

Output Formats

Lowercase
550e8400-e29b-41d4-a716-446655440000
UPPERCASE
550E8400-E29B-41D4-A716-446655440000
No dashes
550e8400e29b41d4a716446655440000
Braces
{550e8400-e29b-41d4-a716-446655440000}

How to Use It

1

Open the tool

Go to Encode / Decode and scroll to the UUID Generator.

2

Choose format

Select lowercase, UPPERCASE, no-dashes or {braces} depending on where you'll use the UUID.

3

Set quantity

Choose how many UUIDs to generate — from 1 to hundreds at once.

4

Generate and copy

Click Generate and copy the UUIDs with one click.

Pro Tips

💡Use UUIDs as database primary keys to avoid ID enumeration attacks — sequential integer IDs reveal how many records exist.
💡The no-dashes format is 32 characters — useful when you need a compact identifier and the receiving system doesn't require dashes.
💡In JavaScript: crypto.randomUUID() generates a v4 UUID natively in modern browsers and Node.js 15+.
💡Generate a large batch at once (50–100) if you need UUIDs for seed data or test fixtures — copy them all in one go.

Frequently Asked Questions

What is a UUID?
A 128-bit Universally Unique Identifier represented as 32 hexadecimal characters in 8-4-4-4-12 format. v4 UUIDs are randomly generated.
Can two generated UUIDs be the same?
The probability is approximately 1 in 2^122 — astronomically small. For all practical purposes, v4 UUIDs are unique.
What's the difference between UUID and GUID?
They are the same thing. GUID (Globally Unique Identifier) is Microsoft's name for the same RFC 4122 standard format.
What does v4 mean?
Version 4 UUIDs are randomly generated. Other versions: v1 is time-based, v3 and v5 are name-based hashes.

Generate UUIDs now

Open the UUID Generator and create as many v4 UUIDs as you need — free, instant, no login.

Open UUID Generator →