What this tool does
The Random UUID Generator creates universally unique identifiers right in your browser. Choose the format you need — v4 for fully random IDs, v7 for time-ordered IDs, or the nil UUID for an all-zero placeholder — set how many you want, and copy them out one at a time or all at once. The random bytes come from your browser’s crypto.getRandomValues, so the values are cryptographically strong and never leave your device.
UUID versions
- Version 4 (random): Every bit that isn’t fixed is random. v4 is the everyday choice for IDs you don’t want anyone to guess — request IDs, session tokens, object names.
- Version 7 (time-ordered): A 48-bit millisecond timestamp leads the value, followed by random bits. Because the timestamp comes first, v7 UUIDs sort by creation time, which keeps database index inserts sequential and friendly to B-tree storage.
- Nil: The reserved all-zero UUID, useful as an explicit “no value” sentinel or a stable value in tests.
Privacy
Everything runs locally. The UUIDs you generate are produced in your browser with the native crypto API and are never uploaded, logged, or stored.