UUID generator
Generate one or more cryptographically random v4 UUIDs. Runs in your browser.
Runs in your browser Instant No signup, no tracking
About this tool
Generate up to 100 v4 UUIDs at a time. UUIDs come from the browser's `crypto.randomUUID()`, which is backed by the same secure random source used for TLS keys — safe for identifiers, session tokens, and idempotency keys. Enter a count in the input field (leave blank for one). Everything runs client-side.
How to use UUID generator
- Paste or type your How many? (default 1) into the left pane.
- The UUIDs appears instantly in the right pane. Conversion runs in your browser — nothing is uploaded.
- Copy the result to your clipboard or download it as a file.
FAQ
- Which UUID version is this?
- Version 4 (random). 122 bits of randomness — collisions are astronomically unlikely.
- Is the random source secure?
- Yes. `crypto.randomUUID()` uses the same CSPRNG as `crypto.getRandomValues()`, which the browser exposes for cryptographic use.
- Can I generate v1/v5/v7 UUIDs?
- Not yet — this tool only emits v4. Time-ordered v7 support is on the roadmap.