Generador de UUID

Genera identificadores universalmente únicos (UUID v4) para tus necesidades de desarrollo. Crea UUIDs individuales o en masa, formátalos como necesites y cópialos con un clic. Seguro, del lado del cliente y no requiere registro.

Publicidad
Publicidad

Genera UUIDs sin subir nada

Cryptographically secure UUID v4 generation using the Web Crypto API — right in your browser. No uploads, no sign-up, no limits.

100% privado
Instant generation
Gratis para siempre

Como usarlo

  1. 1

    Establece las Opciones

    Elige el número de UUIDs que quieres generar y selecciona tus opciones de formato (mayúsculas, con/sin guiones).

  2. 2

    Haz Clic en Generar

    Haz clic en el botón 'Generar UUID(s)'. La herramienta creará instantáneamente el número solicitado de identificadores únicos.

  3. 3

    Copia Tus UUIDs

    Copia un solo UUID haciendo clic en su botón 'Copiar', o copia la lista entera a tu portapapeles haciendo clic en 'Copiar Todo'.

¿Qué es un UUID y por qué usarlo?

Universalmente Único

Una etiqueta de 128 bits utilizada para identificar de forma única la información en sistemas informáticos sin una coordinación central significativa.

Aleatoriedad (v4)

Esta herramienta genera UUIDs de Versión 4 basados en números aleatorios fuertes, lo que hace que las colisiones sean astronómicamente improbables.

Publicidad

Understanding UUIDs

What is a UUID?

A UUID (Universally Unique Identifier) is a 128-bit identifier standardized by RFC 4122. It is represented as a string of 32 hexadecimal digits displayed in five groups separated by hyphens: 8-4-4-4-12, for a total of 36 characters. For example: '550e8400-e29b-41d4-a716-446655440000'. The '4' in the third group identifies the UUID version, and the first character of the fourth group identifies the variant.

Los UUIDs están diseñados para ser globalmente únicos sin requerir un coordinador central. Esto significa que dos sistemas independientes pueden generar UUIDs simultáneamente sin ningún riesgo de colisión, lo que los hace ideales para bases de datos distribuidas, microservicios, aplicaciones offline-first y cualquier sistema donde una autoridad central de IDs sea impráctica.

Publicidad

UUID v4 vs. other versions

Versión 4 (aleatorio): Usa números aleatorios para 122 de los 128 bits. Esta es la versión más comúnmente usada porque no requiere coordinación y es trivialmente fácil de generar. Nuestra herramienta genera UUIDs v4 usando la función crypto.randomUUID() del navegador.

Versión 1 (basada en tiempo): Usa la marca de tiempo actual y la dirección MAC de la máquina que lo genera. Esto hace que los UUIDs sean ordenables por tiempo de creación, pero filtra la dirección MAC, lo que es una preocupación de privacidad. Versión 7 (ordenada por tiempo, propuesta): Combina una marca de tiempo Unix con bits aleatorios, produciendo UUIDs que son tanto únicos como ordenables — ideales para claves primarias de base de datos.

Cuándo usar UUIDs frente a IDs auto-incrementales

Los enteros auto-incrementales (1, 2, 3, ...) son simples y compactos, pero requieren una autoridad central para asignar IDs y no son adecuados para sistemas distribuidos. Los UUIDs pueden ser generados independientemente por cualquier nodo, son globalmente únicos y no filtran información sobre el número de registros en tu base de datos. Sin embargo, los UUIDs tienen 16 bytes (frente a 4-8 bytes para enteros), lo que aumenta el almacenamiento y el tamaño del índice. Para la mayoría de aplicaciones modernas, los beneficios de los UUIDs superan el coste de almacenamiento.

Publicidad

Casos de Uso Comunes

Claves de Base de Datos

Genera IDs en diferentes servidores o en aplicaciones fuera de línea sin conflictos de fusión.

IDs de Transacción

Asigna IDs únicos a las transacciones para un fácil seguimiento y depuración.

Tokens de Sesión

Crea tokens únicos y difíciles de adivinar para la autenticación de usuarios.

Nomenclatura de Activos

Evita colisiones de nombres de archivos en sistemas de almacenamiento.

How does this compare to other UUID generators?

A side-by-side comparison of popular UUID generation tools.

CaracterísticaNovaToolsUUIDGenerator.netOnlineUUIDTools
Privacidad (sin subida)100% localServer-generatedServer-generated
Cryptographically securecrypto.randomUUID()Unknown
Bulk generationUp to 100
Opciones de formatoCase, hyphens, bracesLimitado
Funciona sin conexiónAfter page load
Mobile friendlyLimitadoLimitado

Most online UUID generators generate UUIDs on their server, which means your UUIDs pass through their infrastructure. Our tool generates UUIDs locally using your browser's crypto API — they never leave your device.

Preguntas frecuentes

¿Qué es la versión 4 (v4) de UUID?
UUID v4 es una versión generada usando números aleatorios. Debido al enorme número de combinaciones posibles (2^122), la probabilidad de colisión es infinitesimalmente pequeña.
¿Son estos UUIDs verdaderamente únicos?
Prácticamente, sí. El número de posibles UUIDs v4 es tan grande que necesitarías generar miles de millones por segundo durante siglos para tener una probabilidad significativa de una colisión.
¿Es seguro este generador de UUID?
Sí. Esta herramienta utiliza la función `crypto.randomUUID()` incorporada y criptográficamente segura disponible en los navegadores web modernos.
What is UUID version 4 (v4)?
UUID v4 is a version generated using random numbers. Of the 128 bits in a v4 UUID, 122 are randomly generated, while 6 bits are fixed to identify the version and variant. Due to the massive number of possible combinations (2^122), the probability of collision is infinitesimally small. The standard format is 8-4-4-4-12 hexadecimal digits, e.g., '550e8400-e29b-41d4-a716-446655440000'. The 4 in the third group identifies it as version 4.
¿Estos UUIDs son realmente únicos?
Practically, yes. The number of possible v4 UUIDs is 2^122 (approximately 5.3 × 10^36), which is astronomically large. To put this in perspective, if you generated 1 billion UUIDs every second for 85 years, the probability of a single collision would still be less than 1 in 2 billion. In practice, UUID v4 collisions have never been observed in any real-world system. This is why UUIDs are trusted as primary keys in distributed databases, message IDs in event-driven systems, and file names in content-addressable storage.
Is this UUID generator secure?
Yes. This tool uses the built-in, cryptographically secure `crypto.randomUUID()` function available in modern web browsers (Chrome 92+, Firefox 95+, Safari 15.4+, Edge 92+). This function uses the operating system's CSPRNG (Cryptographically Secure Pseudo-Random Number Generator), which is the same source used for TLS key generation and other security-critical operations. The output is suitable for use as session tokens, API keys, and other security-sensitive identifiers.
What is the difference between UUID, GUID, and ULID?
UUID (Universally Unique Identifier) and GUID (Globally Unique Identifier) are essentially the same thing — GUID is Microsoft's name for the UUID standard defined in RFC 4122. Both are 128-bit identifiers. ULID (Universally Unique Lexicographically Sortable Identifier) is a newer format that combines a 48-bit timestamp with 80 bits of randomness, producing IDs that are sortable by creation time. UUIDs are not sortable. Our tool generates UUID v4, which is the most widely supported version.
¿Puedo generar múltiples UUIDs a la vez?
Yes. You can generate 1, 5, 10, 50, or 100 UUIDs in a single click. The tool generates each UUID independently using a separate call to crypto.randomUUID(), ensuring maximum entropy. For very large batches (1000+), the generation may take a few milliseconds but the browser will not freeze. All generated UUIDs are displayed in a text area where you can copy them individually or all at once.
¿Qué opciones de formato están disponibles?
You can toggle between lowercase and uppercase hexadecimal digits, include or remove hyphens (dashes), and wrap the UUID in curly braces (e.g., {550e8400-e29b-41d4-a716-446655440000}). The default format is lowercase with hyphens, which is the standard RFC 4122 representation. Some systems (notably Microsoft .NET and some databases) use curly braces; others (like PostgreSQL UUID type) use the standard format without braces.
¿Hay un límite de cuántos UUIDs puedo generar?
There is no artificial limit. The practical limit is your device's memory — each UUID is 36 characters (with hyphens), so generating 100,000 UUIDs produces about 3.6 MB of text, which is manageable. For generating millions of UUIDs, use a server-side tool or script instead of a browser tool.
¿Debería usar UUIDs como claves primarias de base de datos?
UUIDs are excellent for distributed systems where multiple nodes generate IDs independently without coordination. They prevent the collision problems of auto-increment integers. However, UUID v4 is random and not sortable, which can cause index fragmentation in databases like PostgreSQL and MySQL. For database primary keys, consider UUID v7 (time-ordered) or ULID, which combine randomness with sortability. UUID v4 is best for message IDs, request IDs, and other identifiers that don't need to be sorted.
¿Puedo usar esta herramienta para proyectos comerciales?
Yes. The tool is free for both personal and commercial use with no watermarks, no attribution required, and no usage limits. You retain full ownership of your generated UUIDs. There is no registration, no API key, and no subscription required.
¿Funciona la herramienta en dispositivos móviles?
Yes. The tool is fully responsive and works on iOS Safari and Android Chrome. The interface adapts to small screens with a vertical layout. The copy buttons are large and touch-friendly. UUID generation runs locally on your phone using the Web Crypto API, so it works even on slow network connections.

Su privacidad es nuestra prioridad

Esta herramienta se ejecuta completamente en su navegador. Sus archivos no se suben a un servidor, no se almacenan ni se analizan.

  • No subimos, almacenamos ni analizamos sus archivos.
  • Todo lo que procesa permanece en su dispositivo.
  • No hay procesamiento del lado del servidor, ni almacenamiento en la nube, ni análisis.

Incluso si su conexión a internet se cae, sus archivos permanecen seguros.

También te podría gustar

Guias utiles

Publicidad