Generators
Create random values and identifiers locally with browser-provided cryptographic randomness.
Password Generator
Create strong passwords locally; generated values never leave your browser.
UUID Generator
Generate standard version 4 UUIDs with your browser's cryptographic generator.
Randomness is useful only when the selection rule is clear
These generators run locally and use the browser's cryptographic random source. The important choice is not just what to generate, but whether values may repeat, how candidates are assigned, and whether the result is an identifier, a password, or an informal selection.
Pick integers
Random Number Generator uses an inclusive whole-number range and can prevent duplicates.
Pick from your own entries
Random List Picker treats every non-blank line as one eligible entry.
Create an identifier
UUID Generator produces standard random version 4 UUIDs; usernames are human-facing ideas and are not checked for availability.
Create a secret
Password Generator ensures every selected character group appears and should be paired with a reputable password manager.
A common mistake to avoid
Randomness does not correct an unfair source list or weak process. Before an important selection, define who is eligible, remove unintended duplicates, choose whether repeats are allowed, and decide how the result will be recorded. Formal contests may need an independently auditable procedure.
How these pages are reviewed
We test range endpoints, impossible unique requests, output length, selected character groups, UUID formatting, and list replacement rules. None of these pages claim to provide a certified draw, identity check, or external availability search.
Every tool page includes a specific method, worked example, limitations, and privacy note. Inputs are processed locally in your browser and are not intentionally saved. Read our editorial standards and corrections process for more detail.