Herramienta browser-only
Generador UUID / GUID
Crea UUID v4 para identificadores y datos de prueba. UUID no es un secreto.
Herramienta browser-only
Crea UUID v4 para identificadores y datos de prueba. UUID no es un secreto.
A version 4 UUID is a 128-bit identifier displayed as 36 characters, including hyphens. The version and variant bits are fixed by the standard, while the rest is random.
Use UUIDs for identifiers and test data. Do not treat them as private secrets.
UUIDs are generated locally in your browser using cryptographically secure randomness when available.
In everyday development, GUID and UUID usually refer to the same 128-bit identifier format. GUID is common in Microsoft ecosystems; UUID is the standard term.
No. UUIDs are designed as identifiers. For secret tokens, use longer random values and handle them with server-side security controls.
Version 4 means the UUID is randomly generated, with specific bits reserved to indicate version and variant.
In theory yes, but with proper random generation the probability is extremely low for normal application scales.
It depends on storage and indexing needs. UUIDs are great for distributed ID generation, but sequential IDs can still be preferable in some database workloads.