A password for an env secret has to satisfy two masters: the .env parser that cannot handle certain characters, and the password policy you actually trust. The Random Password Generator walks that line with explicit control over character classes, length, and ambiguity.
It draws from crypto.getRandomValues, so the entropy is real rather than simulated. Options let you drop symbols, exclude look-alike characters, or request a batch of values in KEY= form for multiple services at once.
Everything runs in your browser — the generated password never travels anywhere.