Use it whenever you need non-password random strings: API keys for side projects, test data for database seeding, session IDs, unique filenames, CSRF tokens, or invite codes. For account passwords aimed at humans, the password generator gives you a strength meter; for cryptographic secrets that no one memorizes, this tool's hex and base64 modes are more appropriate. Alternative: rolling `crypto.randomUUID()` or `openssl rand -base64 24` in a terminal, but the bulk + CSV output here is faster for seeding dev fixtures.
Last updated: 2026-04-24