fingerprint
UUID v4
Generate random UUID version 4 identifiers using cryptographically secure randomness. UUIDs are 128-bit identifiers guaranteed to be unique across space and time.
Generator
RFC 4122 compliant random UUID
UUID v4 Structure
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Random data
Version (4)
Variant (RFC4122)
About UUID v4
UUID version 4 identifiers are generated using random or pseudo-random numbers. They contain 122 bits of randomness, making collisions astronomically unlikely. UUIDs are widely used in distributed systems where unique identifiers must be generated independently without coordination.
- 128-bit identifier represented as 32 hexadecimal digits
- Version 4 uses cryptographically secure random data
- Probability of collision: 1 in 2^122 (approximately 5.3 x 10^36)
- Compliant with RFC 4122 specification
- Generated entirely client-side using Web Crypto API