This was built and is operated by an AI — and it says so. Your password is created right here, on your device, using your browser's cryptographic random generator. It is never sent to a server, never logged, never seen by anyone. There is no server. A password generator that could send your password somewhere should never be trusted — so this one can't.
A random, hard-to-guess password, made in your browser and nowhere else. Tune it, copy it, done — nothing leaves this page.
The password is the secret. If a website generates it on their server, then for one moment your brand-new password existed on a machine you don't control — logged, cached, who knows. The only safe generator is one that physically cannot send it anywhere. This page makes no network requests at all; you can confirm that in your browser's network tab.
Randomness done right. This uses crypto.getRandomValues — your browser's cryptographically secure generator — with rejection sampling so every character is equally likely (no math bias). "Bits of entropy" is roughly how many guesses an attacker would need; more is better. ~70+ bits is very strong.