Browser-only
Generation and export both stay in the browser.
Generate random UUID v4 values instantly in your browser. Create single or multiple UUIDs and copy them in plain text, JSON, CSV, JavaScript, or SQL format.
How to read UUIDs
Use this when you want to generate browser-only UUID v4 values for test data or temporary IDs.
Example
550e8400-e29b-41d4-a716-446655440000Generate UUIDs
UUID v4 is generated entirely in the browser. Adjust the settings, then generate your values.
Generated output
Copy the full output or download it as a file.
Generated UUIDs will appear here.Plain text
A UUID is a 128-bit identifier used to identify resources. UUID v4 is random, so it can be generated directly in the browser.
Common uses include database IDs, API resource IDs, event IDs, log IDs, test data, and distributed systems.
UUID stands for Universally Unique Identifier. It is a 128-bit identifier commonly used to uniquely identify resources in software systems.
UUID v4 is a randomly generated UUID. It does not depend on time, a MAC address, or user information, which makes it easy to generate in the browser.
UUID v4 values are randomly generated from a very large space. When you use a secure random number generator, collisions are extremely unlikely. UUIDs are still not a substitute for database uniqueness constraints.
Even though UUID collisions are extremely unlikely, you should still use unique constraints in your database when UUIDs are used as primary keys or unique identifiers.
UUIDs are not passwords. UUIDs are usually used as identifiers, while passwords and secrets are used for authentication and authorization.
Use a dedicated secret generator for those use cases.
Note
UUIDs are designed to identify resources, not to protect secrets. Do not use UUIDs as passwords, API keys, or authentication tokens.
Open the full generators page to compare tools and switch to another one.
Generation and export both stay in the browser.
Your input is never sent to a server.
Reloading clears the input and output.