Pronounceable Password Generator
Capitalizing and appending digits help satisfy sites that require an uppercase letter or a number.
What is a pronounceable password?
A pronounceable password is a single random token built from alternating consonant and vowel syllables, like kobimaze or vetuda. It isn't a real word, but because it follows the rhythm of natural speech it's easy to say aloud, dictate over the phone, and type — even on a mobile keyboard.
It sits between a fully random string like x7#Kp!2mR and a word passphrase like bold-reef-calm-pike-dawn: a short, speakable, typeable token that is still drawn from cryptographic randomness.
When to use it
- Passwords you need to read aloud or dictate over the phone
- Wi-Fi passwords that guests type by hand
- Temporary or onboarding passwords you communicate verbally
- Accounts with length caps or no-space fields where a long passphrase doesn't fit
- Device PINs and codes you type frequently on a touchscreen
For high-value accounts where you store the password in a manager and never type it, a fully random password or a longer passphrase packs more entropy per character.
How it works
- Your browser generates cryptographically secure random values using the Web Crypto API
- Each syllable picks one of 18 consonants and one of 5 vowels — 90 options per syllable
- Syllables are joined into a single lowercase token, then optionally capitalized or given a trailing 2-digit number
- The password exists only in your browser — nothing is sent to any server
Strength tradeoff
Pronounceable passwords are easier to say and type than random strings, but that convenience has a cost: restricting output to consonant-vowel syllables shrinks the pool of possible characters, so each character carries less entropy than a fully random one. With 90 options per syllable, each syllable adds about 6.5 bits.
Add more syllables to make up the difference — the entropy figure above updates live so you can see exactly how strong your choice is. For everyday accounts aim for 40+ bits; for anything sensitive, prefer the secure password or memorable passphrase generators.
Frequently asked questions
How many syllables should I use?
Six or more syllables for everyday accounts, and add the digit and capital options where sites require them. Watch the entropy figure — more syllables is the most reliable way to add strength.
Is it as strong as a fully random password?
Not character for character. Because output is limited to pronounceable syllables, a pronounceable password of the same length has less entropy than a random one. The benefit is that it's far easier to say and type, and you can offset the gap by adding syllables.
Is it really random if it looks like a word?
Yes. Every consonant and vowel is chosen independently using the Web Crypto API. The result only resembles a word because of the consonant-vowel pattern — it carries no dictionary meaning and isn't drawn from a word list.
Does appending a number help?
It satisfies sites that demand a digit and adds a little entropy (about 6.6 bits for two digits), but it's no substitute for length. Adding a syllable is worth roughly as much and keeps the password pronounceable.
Privacy and security
Your generated passwords never leave your device. This tool runs entirely in your browser using client-side JavaScript — no generator API calls, no server-side generation, and no storage of generated passwords. The source code is fully transparent and can be inspected in your browser's developer tools.