Password Generator Online — Secure Random Passwords

Generate strong random passwords with browser CSPRNG. Choose length, character sets, exclude ambiguous glyphs, and create up to 20 passwords at once — nothing is uploaded.

Loading…
Password generator — developer notes
Create strong local passwords with crypto.getRandomValues. Control length, character classes, ambiguous exclusion, and bulk count for fixtures.

How generation works

Pick length (8–128), enable at least one character set, optionally exclude ambiguous glyphs (0, O, o, I, l, 1), and choose a count up to 20. Symbols use a fixed set: !@#$%^&*()-_=+[]{}|;:,.<>? — documented here for predictability.

Options

Length (8–128)
Enter any length from 8 to 128, or use the slider beside the field. Longer passwords increase entropy; some systems cap length — pick what your target allows.
Character sets
Toggle lower, upper, digits, and symbols. At least one set must be on; otherwise generation fails with a clear error.
Exclude ambiguous
Removes 0, O, o, I, l, and 1 from the pool to reduce support and verbal-read errors.
Count (1–20)
Generate multiple passwords for fixtures without flooding the page.

Examples

Default strong password

Settings

length=16, all sets, exclude ambiguous

Sample shape

16 mixed characters without 0OIl1

Digits only API key fragment

Settings

length=12, digits only, exclude off

Sample shape

12 decimal digits

Related utilities

Need random IDs instead? Use the UUID generator. Hash secrets with the hash generator.

Password generator FAQ

Security and options

Is Math.random used?

No. Generation uses crypto.getRandomValues (CSPRNG) when available.

Are passwords stored or uploaded?

No. Values exist only in your browser session until you copy or clear them.

Why exclude ambiguous characters?

Glyphs like 0/O/o and 1/l/I are easy to confuse when reading aloud or from screenshots.

What symbols are included?

The fixed set is !@#$%^&*()-_=+[]{}|;:,.<>? — chosen for common keyboard coverage without spaces.

More developer utilities in this cluster

Looking for converters, encoders, formatters, and minifiers in one place? Developer tools hub Open the curated developer tools catalogue.