Gerador de UUID
Gera UUID v4 em lote, pronto para copiar
Output
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
Set the quantity (1 to 100) and choose hyphenation and case options.
- 2
Click Generate to produce UUID v4 values using the browser's secure random source.
- 3
Copy the list or download a text file for use in code or fixtures.
Keep going
Hash text or files
Generate SHA-256/384/512 digests when you need a deterministic identifier instead of random.
Convert Unix timestamps
Pair generated IDs with timestamps when you need ordered, traceable records.
Decode tokens
Inspect the JTI and other claims when troubleshooting auth tokens.
Generate full mock records
Build realistic test records that include UUIDs alongside names and emails.
Common UUID workflows
Generate a batch of UUIDs to seed primary keys when bringing up a new database table.
Use the same generated UUIDs across runs to make a flaky test deterministic.
Generate stable IDs for webhook delivery so retries don't double-process events.
Ferramentas relacionadas
Gerador de hash
Calcula SHA-1, SHA-256, SHA-384 e SHA-512 a partir de texto ou arquivos
Conversor de timestamp
Converte epoch Unix em datas e vice-versa, com relógio ao vivo
Decodificador JWT
Decodifica tokens JWT: cabeçalho, payload e expiração
Gerador de dados fictícios
Gera JSON fictício realista para testes e protótipos
Perguntas frequentes
A ferramenta gera UUIDs versão 4 (aleatórios), usando a API crypto.randomUUID() do navegador quando disponível. Eles são adequados para chaves de banco, request IDs e identificadores de sessão.
Sim. Escolha uma quantidade de 1 a 100 e clique em Generate. Cada identificador sai em uma linha, facilitando copiar ou baixar o bloco.
Uppercase converte as letras A–F para maiúsculas. Remover hífens gera uma string hex contínua de 32 caracteres, que alguns sistemas preferem ao formato padrão 8-4-4-4-12.
Não. Os UUIDs são gerados totalmente no seu navegador. Nada é enviado ou armazenado na nossa infraestrutura.