UUID Generator
Create bounded batches of browser-generated UUID v4 values for local development notes, records, or test data.
A QUICK WALKTHROUGH
How to use this tool
- Enter how many UUIDs you need, from 1 to 100.
- Select Generate UUIDs.
- Review and copy the generated list.
Browser cryptography
The generator uses crypto.randomUUID to create version 4 UUIDs. It does not contact a server or attempt to derive values from time, names, or a predictable counter.
A practical batch limit
The page limits each request to 100 UUIDs so the output remains easy to inspect and copy. UUIDs are identifiers, not passwords or encrypted data.
GOOD TO KNOW
Common questions
Which UUID version is generated?
Version 4 UUIDs generated by crypto.randomUUID.
Why is the count limited?
A maximum of 100 keeps the browser-generated result manageable to review and copy.
Does it work in every browser?
It requires a browser that supports crypto.randomUUID in a secure context.