Password Generator

Generate strong random passwords with configurable character sets.

Character sets
Password
StrengthWeak~0.0 bits entropy
Was this tool helpful?

FAQ

How random are the generated passwords?

Passwords use crypto.getRandomValues — the same Web Crypto API browsers use for TLS keys — not Math.random().

Are passwords saved or sent to a server?

No. Generation happens entirely in your browser. We never see, log, or store your password.

How long should a password be?

For most accounts, 16+ characters with mixed character types is a solid default. Longer is better when the site allows it.

Should I include symbols?

Symbols increase entropy, but some sites restrict special characters. Match the site's rules when registering.

Can I use this for API keys?

This tool is for human-memorable passwords. API keys and secrets should come from your platform's secure key management.

You may also like