Skip to content

Case & naming

kebab-case converter

Lowercase words joined with hyphens. The sibling of slugify, without stripping characters that are still legal in CSS.

Processed in your browser — nothing is uploaded

Last reviewed 2026-09-10.

FAQ

Questions, answered

Is kebab-case the same as a URL slug?

Almost. Slugify also strips accents and leftover punctuation. kebab-case is the identifier form (my-component-name).

Can I convert camelCase to kebab-case?

Yes. The tokenizer splits camel humps, so myComponentName becomes my-component-name.

Is this param-case?

Yes. kebab-case, dash-case, and param-case all describe hyphenated lowercase tokens.

Should I use this for full page titles?

For SEO URLs prefer the dedicated Slugify tool, which normalizes unicode. Use kebab-case for code identifiers.

Related

Keep going

Browse all tools