What are UUIDs?
UUID (Universally Unique Identifier) is a standardized identifier format designed to be globally unique across space and time. UUIDs are 128-bit values typically represented as 32 hexadecimal digits, displayed in five groups separated by hyphens: 123e4567-e89b-12d3-a456-426614174000.
UUIDs are defined by the RFC 9562 standard (which obsoletes the previous RFC 4122) and are used across computing platforms to identify information without requiring centralized registration or coordination.
UUID Format
All UUIDs share a common format consisting of 36 characters (32 hexadecimal digits plus 4 hyphens) arranged in the pattern:
xxxxxxxx-xxxx-Mxxx-Nxxx-xxxxxxxxxxxx
Where:
- x is any hexadecimal digit (0-9, a-f)
- M indicates the UUID version (1-7)
- N indicates the UUID variant (typically 8, 9, A, or B for modern UUIDs)
Privacy & Processing
All UUID generation and validation happens locally in your browser using cryptographically secure random number generation. The tools never send your identifiers anywhere - everything processes on your device, making these utilities safe for handling sensitive system identifiers.