Slug Generator
A slug generator converts a post title or string into a URL-safe path segment: lowercase, no accents or special characters, and words joined by a separator. Toolverge strips accents, normalizes the text, and lets you choose hyphens or underscores plus an optional max length.
How it works
- Type or paste a title, like "My Blog Post Title!".
- Choose a hyphen or underscore separator, and optionally set a max length.
- The slug updates instantly: lowercase, accents stripped, special characters replaced, and truncated at a word boundary if needed.
Frequently asked questions
What is a URL slug?
The lowercase, hyphen-separated part of a URL that identifies a specific page, like "my-blog-post-title" in example.com/blog/my-blog-post-title.
Does this handle accented characters?
Yes. Accented letters like é, ñ, and ü are converted to their plain-letter equivalents (e, n, u) rather than dropped or left as-is.
Should I use hyphens or underscores in a slug?
Hyphens are the SEO-standard choice since Google treats them as word separators; underscores are sometimes used for internal identifiers.
What happens if I set a max length?
The slug is truncated at the nearest word boundary rather than cutting a word in half, keeping the result readable.
Is my title sent anywhere?
No. The slug is generated entirely in your browser.