Generate UUIDs (Universally Unique Identifiers) in various versions including UUID v1 (time-based) and UUID v4 (random). UUIDs are 128-bit identifiers that are unique across space and time, perfect for database keys, API tokens, and unique identifiers.
v4 (Random): Cryptographically random UUIDs, most common for general use. No ordering.
v1 (Time-based): Includes timestamp and MAC address. Sortable and chronological, useful for database primary keys.
The tool supports UUID v1 (time-based) and UUID v4 (random/pseudo-random).
UUID v1 is based on timestamp and MAC address, while UUID v4 is randomly generated. Both are unique, but v4 is more commonly used.
Yes, you can specify how many UUIDs to generate and they will all be displayed for easy copying.