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.
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 |
Everything is generated locally with your browser’s cryptographically secure random generator — privacy-first, nothing leaves your device.