Slug Generator

Enter a blog title or product name to get a lowercase hyphenated slug. Customize separator and max length for static site paths and filenames.

Privacy: processed locally, never uploaded.

↓ Paste in the input area below to see results instantly

Separator
Max length

Enter a title or phrase

Convert to a URL-friendly slug for blog paths and filenames.

Slug result

Slug result

towalles-professional-online-tools

Notes

How it works

Strips diacritics, replaces non-alphanumeric chars with spaces, then joins with the separator. Lowercase by default. CJK characters are removed,only ASCII letters and digits remain.

Enter a blog title or product name to get a lowercase hyphenated slug. Customize separator and max length for static site paths and filenames.

Quick start

  1. Enter text

    English titles and mixed punctuation work well.

  2. Tune options

    Default separator is -; optional max length truncates the slug.

Features and use cases

Turn titles into URL slugs—lowercase, hyphenated, stripped symbols—with SEO path preview.

Use for CMS posts, static site generators, API resource names, and safe filenames.

Works with case converter

Use case converter for variable names; slug generator for URL paths.

Typical Workflow

When developing a blog system, first input a title like 『How to Learn React』, the tool generates a slug like 『how-to-learn-react』. Copy this slug to your CMS or static site generator (e.g. Hugo/Jekyll) as the article path. The whole process takes just 10 seconds, avoiding manual handling of case and spaces.

For e-commerce product pages, after entering 『2024 New iPhone 15 Pro Max Case』, you can set the separator to underscore and limit length. Generate SEO-friendly URLs like 『2024_new_iphone_15_pro_max』. Combine with automation scripts to batch process product names in CSV.

Examples

Example

Input

Hello World. 2026

Output

hello-world-2026

FAQ

Are CJK characters kept?

Non-ASCII alphanumerics are stripped; translate CJK or use pinyin separately.

Why do generated slugs sometimes contain numbers? Can they be removed?

This is by design: when titles start with numbers (e.g. 『2024 Best Tools』), numbers are preserved to ensure slug uniqueness. For letter-only slugs, manually edit or preprocess text with regex tools. Numbers generally don't harm SEO.