Pronounceable password generator
Generate passwords that are strong but easy to say and remember. The tool builds each password from random consonant-vowel syllables, so the result reads like a made-up word rather than a wall of symbols — ideal for the few passwords you have to type by hand or recall without a manager.
When a pronounceable password makes sense
For the vast majority of accounts, the right tool is a password manager generating fully random strings of 20+ characters. Memorability is irrelevant because you never type those passwords — the manager fills them in.
But there is a smaller set of passwords you do need to remember or type manually:
- The master password for your password manager itself
- Computer login passwords you type before any manager unlocks
- Passwords for shared accounts in a team where multiple people need to recall them
- Passphrases you might need to enter on a device that does not have your manager installed
For these specific cases, a pronounceable password offers a genuine advantage: you can remember it without writing it down, say it aloud when helping someone, and type it accurately on an unfamiliar keyboard. The trade-off is lower entropy than a fully random string of the same length, which is acceptable when the use case genuinely requires memorability.
How it works
Each password is assembled from alternating consonant-vowel syllables, with optional extras, all from a secure random source:
syllable = random consonant + random vowel (e.g. "ka", "lo", "ti")
password = N syllables joined (N from 2 to 8)
options: capitalise the first letter · append random trailing digits
Every consonant, vowel and digit comes from the browser’s Web Crypto API
(crypto.getRandomValues) with rejection sampling to remove bias, so the output is
uniformly random within the pronounceable pattern. More syllables means more
entropy.
Example
Four syllables with capitalisation and two trailing digits might produce something
like Kalotibe47 — easy to read aloud as “ka-lo-ti-be” yet drawn from a large
random space.
| Syllables | Digits | Example shape |
|---|---|---|
| 2 | 0 | kalo |
| 4 | 2 | Kalotibe47 |
| 6 | 3 | Mibasotudeza812 |
A 4-syllable password without digits contains 8 random characters from a restricted alphabet. Adding 2 trailing digits and capitalisation extends both length and character-set diversity. For higher-security use cases like a password manager master password, 6+ syllables with digits is a more conservative choice.
Tips for using a pronounceable password well
Say it out loud a few times immediately after generating it. The phonetic rhythm is what makes it memorable — hearing yourself say “ka-lo-ti-be” a couple of times embeds it more reliably than reading it silently.
Associate it with something. Even though the word is invented, your brain will find patterns or rhymes. “Kalotibe” might remind you of a place name or a sound. These accidental associations help recall under pressure.
Do not mix in your own characters. Inserting a personally meaningful symbol or number into a generated password feels more memorable but often makes it less secure by substituting a non-random character for a random one. The digits and capitalisation the generator adds are already random; additional substitutions reduce entropy.
Generate five and pick the most naturally speakable one. The tool produces five options per click. Choose the one that flows easiest off the tongue — that is the one you will remember most reliably.
Everything is generated locally with your browser’s cryptographically secure random generator — privacy-first, nothing leaves your device.