UtilityBase logoUtilityBase

Generators

Generators produce values you need on demand: cryptographically random passwords, random numbers for a draw, UUIDs for development, and fair random picks from a list of names. Everything is generated on your device using your browser's built-in cryptography — no generated value is ever transmitted.

Frequently asked questions

Are generated passwords safe to use?

Yes. Passwords are generated locally using the Web Crypto API (a cryptographically secure random source) and are never sent anywhere. For important accounts, store them in a password manager.

Are random results truly random?

The password and number generators use crypto.getRandomValues, which draws from your operating system's secure randomness source — suitable for security use, and more than fair for draws and picks.

Explore other categories