How to use
- Choose how many UUIDs you need.
- Choose uppercase or no hyphens if your system needs it.
- Click Copy to copy them all, one per line.
How it works
Each UUID is created with crypto.randomUUID(), which uses 122 random bits. The chance of two ever being the same is so small that it can be ignored in practice.
Frequently asked questions
What is the difference between UUID and GUID?
They are the same thing. GUID is the name Microsoft uses.
Are these UUIDs unique?
Version 4 UUIDs are random, and collisions are practically impossible.
What does the "4" in the UUID mean?
The first digit of the third group shows the version. Version 4 means the UUID was made from random numbers.