UUID Generator

Generate universally unique identifiers (UUIDs)

Back to Tools

UUID Settings

UUID Examples

Version 4 (Random)

550e8400-e29b-41d4-a716-446655440000

Completely random UUID based on random or pseudo-random numbers.

Version 1 (Timestamp)

6ba7b810-9dad-11d1-80b4-00c04fd430c8

Based on timestamp and MAC address (or random node).

Keyboard Shortcuts

Ctrl + Enter Generate UUIDs
Ctrl + G Quick Single UUID
Ctrl + A Copy All UUIDs
Escape Close Quick Dialog

About UUIDs

What are UUIDs?

Universally Unique Identifiers are 128-bit numbers used to uniquely identify information in computer systems without central coordination.

Version 4 (Random)

Generated using random or pseudo-random numbers. Most commonly used version with extremely low probability of duplicates.

Version 1 (Timestamp)

Based on timestamp and MAC address. Guarantees uniqueness but may reveal information about when and where it was generated.

Use Cases

Database primary keys, session IDs, transaction IDs, file names, API keys, and any scenario requiring unique identifiers.

Security

UUIDs are not cryptographically secure for sensitive applications. Use proper encryption for security-critical scenarios.

Standards

UUIDs follow RFC 4122 standard ensuring compatibility across different systems and programming languages worldwide.