UUID version 4 Generator
Generate random UUID v4 identifiers. Features 122 bits of pure entropy, making it the industry standard for unique database keys and session IDs.
Need a custom format?
Generate Random Strings with specific rules.
Generate Random Strings with specific rules.
UUID v4 is the most widely used version of the Universally Unique Identifier standard. Unlike other versions that use timestamps or hardware MAC addresses, v4 is generated using cryptographically strong random numbers. Out of the 128 bits in the ID, 122 bits are purely random, making the probability of a collision virtually zero.
| Segment | Characters | Description |
|---|---|---|
| Random Part 1 | f47ac10b-58cc |
The first 48 bits of pure random data. |
| Version | 4 |
Fixed at 4 to identify it as a random UUID. |
| Random Part 2 | 372 |
12 more bits of random data. |
| Variant | a |
Fixed at 8, 9, a or b (RFC 4122). |
| Random Part 3 | 567-0e02b2c3d479 |
The final 62 bits of random data. |