Runs locally in your browser
UUID Generator
Generate UUID version 4 values with the Web Crypto API. Create up to 500 identifiers at once, then copy or download the list.
Mint random v4 UUIDs for database keys, request IDs, or fixture data. This generator does not mint time-based v1 values.
crypto.randomUUID runs in the browser. Identifiers are not allocated by a remote service.
How to use
- Set how many IDs you need, from 1 to 500.
- Generate.
- Copy one row, copy all, or download a text file.
How it works
Version 4 UUIDs are 122 bits of randomness with a fixed version nibble. Collision risk is negligible for typical app volumes.
The quantity is capped at 500 per click to keep the page responsive. Generate again if you need another batch.
Examples
Primary keys
Mint a handful of IDs to seed a local database before the backend exists.
Load test
Download 500 unique request IDs so a script can send distinct correlation headers.
FAQ
Is this UUID v1 or v7?
Only version 4 via crypto.randomUUID. No MAC address and no Unix-time layout.
Are IDs unique across reloads?
Each call draws new random bits. Treat them as unique for practical purposes.
Can I generate more than 500?
Click generate again. The cap is per batch, not a lifetime limit.
Does generation need the network?
No. Web Crypto runs in this browser tab.
Related tools
- JSON FormatterPretty-print JSON with a chosen indent so API payloads are readable. Formatting runs in your browser and never leaves this tab.
- Unix Timestamp ConverterConvert Unix time in seconds or milliseconds to a calendar date, and the other way around. Conversion runs locally in the browser.
- Base64 EncoderEncode UTF-8 text to Base64 for data URIs, headers, and embeds. Encoding uses the Web APIs in this tab, with no server hop.
- URL EncoderPercent-encode query values and path segments with encodeURIComponent. Spaces become %20. Encoding stays in your browser.
- JSON to CSVConvert a JSON object or array of objects into CSV for spreadsheets. Nested keys flatten with dots, all inside your browser.