UUID Generator
Pairs well with
About UUID Generator
Generate cryptographically-strong UUIDs — v4 (random) or NIL — with one click. Bulk-generate up to 100, choose lowercase / UPPERCASE / no-dashes / braced format, copy individual or all.
UUID v4 is the standard 'random ID' for databases, distributed systems, and anywhere you need a globally-unique identifier without a central registry. The collision probability is so astronomically low that for practical purposes you can treat them as unique forever — generating one a second for ~85 years gives you a ~50% chance of seeing a collision.
UUIDs are generated using the browser's crypto.getRandomValues() — the same source the Web Crypto API uses for cryptographic keys. No server round-trip, nothing logged. The NIL UUID (all zeros) is the canonical 'no value' sentinel that some APIs use as a default.