Developer

UUID Generator

Generate cryptographically random UUID v4s or timestamp-based UUID v1s. Generate in bulk, copy individually, or export all. Validate an existing UUID.

68c424ff-a741-4e87-8328-f00ce42c4453
2c8d6ca5-9f1a-4e22-9bd1-fb29c953f1f2
be6c2421-c3a8-4014-9188-42f49eb4f140
aca948ed-7932-48a5-adfc-8368f7d01d30
cbced7b1-208b-452a-9357-528e2e74b4c5

Related Tools

More free utilities you might find useful

Frequently Asked Questions

Quick answers to common questions

What is a UUID?+

UUID (Universally Unique Identifier) is a 128-bit label used to uniquely identify information in computer systems. Written as 32 hexadecimal digits in 5 groups: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx.

What is the difference between UUID v1 and v4?+

UUID v1 is generated using the current timestamp and the machine's MAC address — so it encodes when and where it was created. UUID v4 is completely random (122 random bits). For most use cases, v4 is preferred as it contains no system information.

Are UUIDs truly unique?+

UUID v4 has 2^122 possible values. The probability of generating a duplicate is astronomically low (~1 in 5 undecillion). For all practical purposes, they are unique. Collisions are theoretically possible but negligible.

What is the difference between UUID and GUID?+

They are the same thing. GUID (Globally Unique Identifier) is Microsoft's term for UUIDs. Both follow the same RFC 4122 standard.