How Does UUID Generator Work?
The generator runs entirely in your browser. v4 calls crypto.randomUUID() directly — the browser pulls entropy from the OS, giving you 122 bits of cryptographic randomness per UUID. v7 reads Date.now() for the 48-bit timestamp prefix, then fills the remaining 74 bits with random data per RFC 9562. v1 computes a 60-bit Gregorian-epoch timestamp with a randomly generated node ID (no real MAC address leaves your browser). v5 feeds a namespace and name string through SHA-1 via the SubtleCrypto API, producing the same UUID every time for the same inputs. In our testing, generating 500 v7 UUIDs takes under 12ms on a mid-range laptop. No server round-trips, no API keys.