What a UUID is
A UUID (Universally Unique Identifier), also called a GUID, is a 128-bit value written as 32 hex digits in the pattern 8-4-4-4-12. Version 4 UUIDs are almost entirely random, which makes them ideal as primary keys, request and trace IDs, idempotency keys, file names and any place you need an identifier that won't clash without a central authority handing them out.
Strong randomness, generated locally
These use your browser's crypto secure random source — the same primitive used for cryptographic keys — so they're unpredictable, not just "random enough". Generating thousands at once is handy for seeding a database or load test.
Frequently asked questions
What version is generated?
Version 4 (random), the most widely used, via the browser's secure random generator.
Could two ever collide?
For all practical purposes, no — 122 random bits make duplicates astronomically unlikely.
UUID vs GUID?
Same thing — GUID is Microsoft's name for the identical format.
More free tools
Developer tools: Hash Generator, Password Generator, JSON Formatter · See all Alienated Tools.