Skip to main content

UUID Generator

Generate UUID v4 and v5

UUID v4 (Random)

Generate random UUIDs

UUID v5 (Name-based)

Generate UUID from namespace and name

Generated UUIDs

No UUIDs generated yet

Generate UUIDs using one of the methods above

About UUIDs

UUID (Universally Unique Identifier) is a 128-bit identifier used to uniquely identify information in computer systems.

UUID v4 (Random)

Generated using random or pseudo-random numbers. Most commonly used. Extremely low probability of collision. Format: xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx

UUID v5 (Name-based)

Generated using SHA-1 hash of a namespace and name. Same input always produces the same UUID. Useful for deterministic generation.

Common Use Cases

  • Database primary keys
  • Distributed systems identifiers
  • Session tokens and API keys
  • File and resource naming
  • Message queue identifiers