Single ID
Input: 1
Output: A UUID v4 value such as 7c9e6679-7425-40de-944b-e07fc1f90ae7
Developer
Generate 1 to 100 UUID v4 values using the browser crypto API.
UUIDs are useful identifiers, not passwords, API keys, or security tokens.
Runs in your browser. Input is not uploaded or sent to an external API.
Generate random UUID v4 identifiers for test records, database seeds, fixtures, and local development notes.
Input: 1
Output: A UUID v4 value such as 7c9e6679-7425-40de-944b-e07fc1f90ae7
Input: 5
Output: Five newline-separated UUID v4 values
Generate IDs before converting JSON fixture rows to CSV.
Use ULID when lexicographic time order matters.
UUIDs identify records. They are not passwords, secrets, or access tokens.
The page uses crypto.randomUUID when the browser provides it.
For most web work GUID and UUID refer to the same identifier format.