UUID Generator
Client-sidePopularFeaturedNewGenerate UUID v4 identifiers in bulk — uppercase and hyphenless options, fully client-side.
O Gerador de UUID cria identificadores UUID versão 4 com a Web Crypto API no seu navegador. Nada é enviado a um servidor.
Examples
Key takeaways
- UUID v4 via crypto.randomUUID when available
- Bulk generate up to 100 IDs
- Optional uppercase and hyphenless output
- Fully client-side
What is a UUID v4?
UUID version 4 is a 128-bit identifier with random bits (and a fixed version/variant nibble), usually shown as 8-4-4-4-12 hexadecimal groups.
Collision risk is negligible for normal volumes. This tool does not generate time-ordered UUID v7. Use uppercase or hyphenless options when your storage format requires them.
Features
UUID v4
Cryptographically strong random UUIDs via crypto.randomUUID when available.
Bulk generate
Create up to 100 identifiers in one click for fixtures and seeds.
Format options
Toggle uppercase and remove hyphens for compact storage keys.
Copy & download
Export a newline-separated list for scripts and spreadsheets.
How it works
Choose options
Set count, uppercase, and hyphen preferences.
Generate
Click Generate to mint new UUIDs in the output panel.
Copy the list
Copy or download for use in code, SQL, or config files.
Example walkthroughs
Single UUID
Generate one v4 UUID (count is controlled in the panel).
1
Bulk fixture set
Mint several IDs at once for seed data — toggle uppercase or hyphenless in the panel as needed.
5
Use cases
Database seeds
Mint primary keys for local fixtures and migration scripts.
Client-side IDs
Create request or correlation IDs before an API responds.
Test data
Fill forms and mocks with unique identifiers quickly.
Code snippets
UUID v4 in modern browsers
jsThis generator uses crypto.randomUUID when available.
const id = crypto.randomUUID(); // → "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx"
Common errors
Count rejected
Cause: Count was outside 1–100 or not an integer.
Fix: Choose a whole number between 1 and 100 inclusive.
Need time-ordered IDs
Cause: This tool only generates UUID version 4.
Fix: Use a UUID v7 library if sortable IDs are required.
About UUID Generator
O Gerador de UUID cria UUIDs versão 4 com a Web Crypto API para você cunhar identificadores de bancos de dados, testes e APIs sem ida e volta ao servidor. Gere um ID ou até cem em um clique para fixtures e scripts de seed.
Opções de maiúsculas e sem hífens batem com convenções de armazenamento que preferem chaves compactas ou o casing legado de GUID. O risco de colisão em v4 é desprezível em volumes normais; esta ferramenta não gera UUID v7 ordenado por tempo se você precisar de IDs ordenáveis.
A geração é totalmente no cliente. Nada é enviado a um servidor, o que mantém demos offline e fluxos air-gapped funcionando. Baixe uma lista separada por quebras de linha quando precisar colar em SQL, CSV ou ferramentas de scaffolding.
Boa prática: prefira v4 respaldado por crypto.randomUUID para novos IDs públicos; não trate UUIDs como segredos. Use o Gerador de Hash quando precisar de um digest do conteúdo em vez de um identificador aleatório, e Decodificar JWT quando a string que você inspeciona for um token — não um UUID.
Frequently asked questions
Qual versão de UUID?
Versão 4 (aleatória). Versões ordenadas por tempo ainda não são geradas nesta ferramenta.
UUIDs são únicos?
A probabilidade de colisão em v4 é astronomicamente baixa para volumes práticos.
Algo é enviado a um servidor?
Não. A geração roda inteiramente no seu navegador.
Posso gerar muitos de uma vez?
Sim. Você pode criar até 100 identificadores em um clique para fixtures, seeds e scripts.
Related tools
JWT Decode
Decode JWT header and payload in your browser — inspect claims without uploading tokens.
Barcode Generator
Generate Code128, EAN, UPC, Code39, and QR barcodes as PNG in your browser.
Regex Tester
Test JavaScript regular expressions against sample text — matches and groups, private in your browser.
Timestamp Converter
Convert Unix timestamps to dates and back — seconds, milliseconds, and ISO strings in your browser.
Markdown Preview
Preview Markdown as HTML in your browser — private drafts, no upload.
Hash Generator
Generate SHA-1 / SHA-256 / SHA-384 / SHA-512 digests of text with Web Crypto — fully client-side.
Popular tools
JSON Formatter
Format, beautify, and minify JSON in your browser. Free, private, and instant — no upload to a server.
JSON Validator
Validate JSON instantly in your browser. See type, size, and node counts — or exact parse errors with line and column.
JSON Viewer
Explore JSON as an interactive tree with paths, types, and expandable nodes — all processed locally in your browser.
Base64 Encode / Decode
Encode UTF-8 text to Base64 or decode Base64 back to text — instantly in your browser.
Newest tools
Case Converter
Convert text between UPPERCASE, lowercase, Title Case, camelCase, snake_case, and more.
Word Counter
Count words, characters, sentences, and paragraphs with reading time — live and private.
Text Diff
Compare two texts line by line — see added and removed lines with a unified-style diff.
Slug Generator
Turn titles into clean, SEO-friendly URL slugs — lowercase, hyphenated, accents stripped.