tools / Passwords & Privacy
Generate a strong random password with the length and character sets you want. It uses the browser's cryptographic random source, runs entirely on your machine, and shows the entropy so you know what you are getting.
pick a character setGenerated with the browser's cryptographic random source.
This pulls from crypto.getRandomValues, the same cryptographic generator used for keys, not the predictable Math.random. Each character is picked with unbiased sampling across your chosen set.
Here, yes, because it never leaves your browser and nothing is logged. As a habit though, generating in a trusted password manager is the safest option.
Only if you will type it by hand and want to avoid confusing 0/O or 1/l/I. For stored passwords, leave them in for a slightly larger character set.