Find a Nice Hash ✨
Search for a hash that contains your chosen word — a vanity hash generator powered by brute force.
The word will be searched in the hex hash output. Non-hex characters (g–z) are allowed but reduce probability.
A "nice hash" is a hash digest that contains a meaningful or aesthetically pleasing substring — like a word, a name, or a pattern. There's no shortcut: the only way to find one is brute force.
The algorithm works like this: generate a random input string, compute its hash, check if the hex output contains your target word. If not, try again with a new random string. Since hash functions output pseudo-random hex, each character is uniformly distributed across 0-9a-f (16 possibilities). A word made of hex-compatible letters (a–f) is more easily found — longer or rarer words take exponentially longer.
Everything runs locally in your browser via the WebCrypto API — no data is sent to any server.