UUID / GUID Generator

Generate UUID v4 (random) identifiers. Useful for unique IDs in databases, APIs, and applications.

UUIDs:

 

What is a UUID?

UUID (Universally Unique Identifier) or GUID (Globally Unique Identifier) is a 128-bit identifier formatted as 8-4-4-4-12 hex digits (e.g. 550e8400-e29b-41d4-a716-446655440000). UUID v4 is random and practically unique.

What is it used for?

  • Databases: Primary keys for records (no collisions)
  • APIs: Unique resource IDs
  • Distributed systems: IDs without central coordination
  • File names: Unique temporary or generated filenames

How it works

Uses crypto.randomUUID() when available, otherwise a cryptographically random fallback. Generate one or many (up to 50) at once.