UUID generator

Generate UUID v1, v7 (Unix ms time), v3/v5 (namespace + name), or random v4 in the browser.

{{ uuidGenerator.error }}

{{ t("uuidGenerated") }}

{{ t("uuidGuideTitle") }}

{{ t("uuidGuideIntro") }}

{{ t("uuidDiffTitle") }}

{{ t("uuidDiffIntro") }}

  • v1: {{ t("uuidDiffV1") }}
  • v3: {{ t("uuidDiffV3") }}
  • v4: {{ t("uuidDiffV4") }}
  • v5: {{ t("uuidDiffV5") }}
  • v7: {{ t("uuidDiffV7") }}

{{ t("uuidBuildTitle") }}

  • {{ t("uuidBuildV1") }}
  • {{ t("uuidBuildV3") }}
  • {{ t("uuidBuildV4") }}
  • {{ t("uuidBuildV5") }}
  • {{ t("uuidBuildV7") }}

{{ t("uuidProsConsTitle") }}

  • v1: {{ t("uuidProsConsV1") }}
  • v3: {{ t("uuidProsConsV3") }}
  • v4: {{ t("uuidProsConsV4") }}
  • v5: {{ t("uuidProsConsV5") }}
  • v7: {{ t("uuidProsConsV7") }}

{{ t("uuidUseCasesTitle") }}

  • {{ t("uuidUseCaseV1") }}
  • {{ t("uuidUseCaseV3") }}
  • {{ t("uuidUseCaseV4") }}
  • {{ t("uuidUseCaseV5") }}
  • {{ t("uuidUseCaseV7") }}

{{ t("uuidHowToChooseTitle") }}

{{ t("uuidHowToChooseText") }}

Overview

v1 and v4 (RFC 4122), time-sortable v7 (RFC 9562), v3 (MD5) and v5 (SHA-1) with namespace and UTF-8 name. Randomness via crypto.getRandomValues. For tests and samples.

Tool guide

  • O que é UUID Identificador universalmente único de 128 bits, em formato textual com hífens. Versões diferentes têm regras (tempo, aleatoriedade, hash com namespace, etc.).
  • O que a ferramenta faz Gera um ou vários UUIDs nas versões suportadas (v1, v3, v4, v5, v7) conforme opções, no navegador.
  • Por que usar Chaves primárias em testes, exemplos em documentação, simulação de APIs e preenchimento de formulários sem colisão provável (especialmente v4/v7).

Format

550e8400-e29b-41d4-a716-446655440000

FAQ

What is this tool for?

It runs fully in your browser: useful to validate, format, or convert data in everyday development.

Are my inputs sent to a server?

Processing happens locally with JavaScript. We do not store what you paste into the text areas.

Can I use this for real production data?

Use at your own risk. For secrets (passwords, tokens), prefer controlled environments and your company policies. And always review the generated contents. Never trust blindly things you see on the internet.