UUID Generator — Version 4
Generates version 4 UUIDs in bulk from your browser’s cryptographic random source.
Loading the tool…
How to use this tool
- Set how many you need.
- Choose the letter case, and braces if you are pasting into a Windows tool that expects them.
- Select Generate, then copy or download the list.
What uuid generator does
A version 4 UUID is 122 random bits written in a fixed 36-character layout, with six bits reserved to record the version and variant. Random is the whole design: no coordination, no central allocator, no round trip to a database to reserve an identifier. Two independently generated values colliding is not something worth engineering against.
These come from your browser’s cryptographic random source rather than from Math.random, which matters if an identifier is ever used somewhere a guessable value would be a problem. Worth knowing before you use one as a primary key: a random UUID has no order, so rows arrive scattered across the index rather than at the end of it, and on a large table that is a real cost. If you need both uniqueness and locality, look at the time-ordered UUID versions or a sortable identifier instead.