Generators

Random data on demand

UUIDs, secure passwords, hashes, mock data, QR codes, Lorem Ipsum. Tuned for speed and shipping defaults that match real-world usage.

12 tools

Choosing between these tools

Generated values are only as good as the source of randomness behind them. The password and UUID generators here draw from the browser's cryptographic random source rather than Math.random, which matters the moment a value is used for anything a stranger might try to guess.

Match the tool to the threat. A password generator is for values a human stores in a manager; the bcrypt tool is for values a server stores, because it deliberately makes each check slow. The hash generator covers MD5 and the SHA family, which are fast by design and therefore right for checksums and wrong for passwords. TOTP produces the six-digit codes behind two-factor login, useful for confirming a shared secret was set up correctly.

Lorem Ipsum, mock data and QR codes are the everyday half of this set: filler text with the right paragraph shape, seed records with plausible names and dates, and a QR code you can size and error-correct before printing it. All generation runs in your browser — no value shown here is transmitted or logged.