Создавайте надёжные пароли с настройкой длины и типов символов
Tool guide
A slider sets the length anywhere from 8 to 64 characters, and four checkboxes decide which sets go into the mix: A-Z, a-z, 0-9 and the !@#$%^&* symbols. You get one random string, shown under «Your password:» and copyable with the clipboard button. The page's own script builds it, nothing is sent anywhere and no history is kept. Useful the moment a signup form demands "12 characters, a digit and a symbol" and you would rather not invent another one yourself. See also: hash a value with MD5 or SHA-256, make a random string for an API key, get a UUID v4 for a service token.
Sixteen characters with mixed case and digits is plenty for ordinary sites. For email, banking and your password manager go to 24 or more — those accounts unlock everything else. The slider reaches 64, which makes sense for API keys and service accounts you copy and paste rather than type.
Untick «Characters (!@#$%^&*)» and buy the strength back with length: 24 letters and digits are harder to brute-force than 12 with punctuation. Some forms also silently truncate — if the field shows fewer characters than you generated, drop the slider to the stated limit and generate again.
No, and don't try. The whole point of a random string is that it has no connection to you and cannot be guessed, which also makes it unmemorable. Put it in a password manager — Bitwarden, KeePass, your browser's, or iCloud Keychain — and remember one master password instead of dozens.
No. Breaches happen constantly, and after each one attackers replay the leaked email-and-password pair against every popular service. That is credential stuffing, and reuse is the only thing that makes it work. Generate a separate string per account — clicking the button again costs you a second.
No. The string is assembled by a script on the page you already have open, it is never logged, and it disappears when you reload the tab — there is no list of previously generated passwords here. So copy it right away: once the page reloads, that particular string is gone for good.
Yes. The page opens in mobile browsers, the length slider drags with a finger, and the 📋 button copies to the phone's clipboard. On iOS, clipboard access needs the page served over HTTPS and a real tap from you — Safari blocks copying that a script starts on its own.
The neighbouring "Password Generator" page offers almost no options and suits you when any random string will do. This one gives you a length slider from 8 to 64 and a separate checkbox per character set, so you can shape the result to whatever a particular signup form demands.
Before: Length 20; A-Z, a-z and 0-9 ticked, symbols off
After: hT4kQm9zRp2VbXs7Ldn3
Before: Length 64, all four character sets enabled
After: A 64-character string mixing both letter cases, digits and !@#$%^&* symbols
Before: Length 8, lowercase letters and digits only
After: k7m2qv9d
Your rating and feedback help decide what to improve next.