Slug Generator

Random, readable URL slugs and human-friendly IDs.

Generate clean, URL-safe slugs made of real words plus an optional short id — the kind of readable handle you'd give a preview link, a support ticket, or a running container.

Random opaque IDs are hard to say out loud and easy to mistype. Word-based slugs like 'brave-otter-3f9a' stay unique enough for most uses while being far friendlier to read, share, and remember. Choose two or three words and toggle the short hex id on or off.

These are handy for staging URLs, feature-branch names, room codes, invite links, and placeholder identifiers while prototyping. Everything is lowercase and stripped to letters, numbers, and your chosen separator, so it's safe to drop straight into a path.

Frequently asked questions

Are the slugs guaranteed unique?

With the short id appended, collisions are unlikely for casual use, but this isn't a substitute for a real UUID or a database check when true uniqueness matters.

Why words instead of random characters?

Readable slugs are easier to communicate verbally and spot in logs. If you'd rather have pure random IDs, use the UUID or random string generator instead.

Are they URL-safe?

Yes — output is lowercase with only letters, numbers, and a hyphen or underscore, so it slots directly into a URL path.