Generador de UUID
Genera UUID v4 aleatorios para apps, APIs y bases de datos.
What is UUID Generator?
UUID Generator creates random UUID v4 identifiers. A UUID (Universally Unique Identifier) is a 128-bit number formatted as 32 hex digits in groups of 8-4-4-4-12 (e.g. 550e8400-e29b-41d4-a716-446655440000). UUID v4 uses random or pseudo-random bits, making collisions extremely unlikely.
How to use
- Click Generate to create a new random UUID v4.
- Click Copy to copy it to your clipboard.
- Generate as many UUIDs as needed; each one is independently random.
Common use cases
- Primary keys in relational and NoSQL databases
- Idempotency keys for API requests
- Filenames or object keys in storage systems
- Session or transaction identifiers
FAQ
- What is the probability of a UUID collision?
- UUID v4 has 122 random bits (~5.3 × 10^36 possible values). The probability of generating a duplicate is negligible for practical applications; you would need to generate over a billion UUIDs per second for centuries before expecting a collision.
- What is the difference between UUID v4 and v7?
- UUID v4 is fully random. UUID v7 (a newer standard) embeds a millisecond-precision timestamp, making UUIDs sortable by creation time and useful for database indexing.
- Is UUID the same as GUID?
- Functionally yes. GUID (Globally Unique Identifier) is Microsoft's implementation of the UUID standard. They use the same format and are interchangeable in most contexts.
Embed this tool
Paste this iframe into any HTML page to embed Generador de UUID on your site:
Herramientas relacionadas
-
Convertidor de Timestamp Unix
Convierte timestamps Unix a fecha legible y viceversa.
-
Formateador y Validador JSON
Formatea y valida JSON con sangría legible y errores claros.
-
Codificador/Decodificador de Entidades HTML
Convierte caracteres especiales en entidades HTML y viceversa.
-
Generador de Hash (SHA-256 / SHA-1 / MD5)
Genera hashes de texto comunes como SHA-256, SHA-1 y MD5.
-
Probador de Expresiones Regulares
Prueba patrones regex con banderas y revisa coincidencias y grupos.