Generate a random password in your browser, with a length range taken from the NIST digital identity guidelines. Nothing is transmitted and nothing is stored.
password = n characters drawn uniformly from the selected alphabet
Length matters far more than exotic characters. NIST puts the floor at eight characters and asks systems to accept at least sixty-four, and it explicitly tells verifiers not to demand a mixture of character types — the rules that produce Password1! and a sticky note. The generator here leaves out characters that are easy to misread, such as l, 1, I, O and 0, and runs entirely in your browser.
password = n characters drawn uniformly from the selected alphabet
Each character is drawn independently from the alphabet you enable, using the browser random number generator. Adding a character group widens the alphabet; adding length multiplies the number of possibilities, which is why length is the stronger lever.
A number that disagrees with its source is a defect, not a rounding preference.
What did you enter, what did the tool show, and what did you expect instead? If you have a source that disagrees with ours, a link to it is the most useful thing you can send.
Opens your mail app with the page and tool already filled in.
Convert a hex colour to its red, green and blue channels, including the shorthand and alpha forms defined by the CSS specification.
Build a CSS gradient and copy the exact declaration. Angles follow the CSS specification, where 0deg points up and angles turn clockwise.