Category
Generators
Passwords, random numbers, QR codes and names
Generate strong passwords, random numbers, QR codes, realistic names, usernames, business names and balanced teams — all with cryptographic randomness, private in your browser.
At a glance
7tools in this hub
7 of 7 run entirely in your browser
Free · no sign-up · no watermark
All Generators tools
Every tool in generators
Ordered as they appear in the library. Each opens on its own page with instructions, FAQs and related tools.
Password Generator
Generators
This password generator creates strong, cryptographically random passwords entirely on your device.
Instant · no upload
Random Number Generator
Generators
This random number generator produces integers, decimals or lists with no repeats.
Instant · no upload
QR Code Generator
Generators
Create QR codes for URLs, text, Wi-Fi, contacts and more with this QR code generator.
Instant · no upload
Random Name Generator
Generators
This random name generator produces realistic full names for test data, writing and placeholders.
Instant · no upload
Username Generator
Generators
Turn a word or name into a batch of available-style handles with this username generator.
Instant · no upload
Business Name Generator
Generators
Spark brandable company and product names from your keywords with this business name generator.
Instant · no upload
Team Generator
Generators
Split a list of names into random, evenly balanced groups with this team generator.
Instant · no upload
About this category
What generators can do for you
Seven generators that make something new rather than compute an answer. The privacy-sensitive ones, passwords above all, draw from your browser's cryptographic random source and never make a network request, which is meaningfully safer than a generator that has to ask a server for entropy.
Seven generators, each producing something new on demand. The common thread is randomness done properly: everything draws from the crypto.getRandomValues API, the operating system's entropy pool that also produces TLS session keys. Math.random() is never used anywhere on this site — it is a fast pseudorandom generator whose internal state can be recovered from a handful of outputs.
Entropy, and why rejection sampling matters
Random integers use rejection sampling rather than a modulo, because reducing a random value modulo a range that does not divide evenly skews the distribution — mapping 0 to 255 onto 0 to 5 gives four outcomes a 43 in 256 chance and two a 42 in 256 chance. Invisible in a single draw, obvious in a histogram over a million. Password Generator and Random Number Generator both draw from the same cryptographic source.
QR codes are about the payload, not the drawing
QR Code Generator emits the correct convention for each content type, so a Wi-Fi code starts WIFI:, a contact card BEGIN:VCARD, and there are forms for email, SMS and telephone. The hard ceiling is 2,953 bytes at version 40 with the lowest error correction, and choosing a higher correction level reduces capacity while letting the code survive damage. The tool reports the version and module count it settled on.
Names, handles and teams
Random Name Generator, Username Generator, Business Name Generator and Team Generator shuffle local word and name lists with Fisher-Yates, which produces every ordering with equal probability. Nothing is fetched from a server and no list is stored.
None of it leaves the page
Every generator runs in your own browser. That matters most for passwords, because a secret produced on a server is a secret that server has logged. Nothing is transmitted, nothing is stored, and the tools keep working with the network disconnected.
Questions
Generators tools, answered
The things people ask before choosing a tool, rather than while using one.
Are the passwords generated here safe to use?
Is the randomness really random?
Can I generate QR codes for Wi-Fi and contacts?
Is any of this uploaded or stored?
Keep browsing