UUID-Generator

UUID v4 stapelweise erzeugen, kopierfreundlich

Quantity

Output

Loading editor...

Generate UUID v4 values for keys, IDs, and tests

UUID v4 is the standard for unique identifiers when you don't want a centralized counter — primary keys, request IDs, idempotency tokens, session identifiers. Generating them in the browser uses the native crypto API for proper randomness, with options to format with or without hyphens and uppercase or lowercase to match your storage conventions.

Use the generator when you need to

Mint database primary keys

Generate UUIDs for new records so your IDs stay unique across services without a central counter.

Create idempotency or request IDs

Tag every API request with a UUID so retries are safe and traces are easy to correlate.

Bulk-generate IDs for tests or seed data

Produce dozens of IDs at once for fixtures, mock data, or sample database rows.

How to generate UUIDs quickly

  1. 1

    Set the quantity (1 to 100) and choose hyphenation and case options.

  2. 2

    Click Generate to produce UUID v4 values using the browser's secure random source.

  3. 3

    Copy the list or download a text file for use in code or fixtures.

Common UUID workflows

Bootstrap a new schema

Generate a batch of UUIDs to seed primary keys when bringing up a new database table.

Reproduce a bug with consistent IDs

Use the same generated UUIDs across runs to make a flaky test deterministic.

Mint webhook idempotency keys

Generate stable IDs for webhook delivery so retries don't double-process events.

Verwandte Tools

Häufig gestellte Fragen

Das Tool erzeugt UUIDs der Version 4 (random UUIDs) und nutzt dafür, wenn verfügbar, die crypto.randomUUID()-API deines Browsers. Das eignet sich z. B. für Datenbank-Keys, Request-IDs und Session-Identifier.

Ja. Wähle eine Anzahl von 1 bis 100 und klicke auf Generate. Jede UUID steht in einer eigenen Zeile, damit du den Block leicht kopieren oder herunterladen kannst.

Uppercase wandelt die Buchstaben A–F in Großbuchstaben um. Remove hyphens gibt eine durchgehende 32-stellige Hex-Zeichenkette aus, die manche Systeme gegenüber dem Standardformat 8-4-4-4-12 bevorzugen.

Nein. UUIDs werden vollständig in deinem Browser erzeugt. Es wird nichts hochgeladen oder auf unserer Infrastruktur gespeichert.