Text

Case to Slugify

Free and instant online tool to convert normal text, strings, or variables into Slugify.

Input Text
slugify Result
100% Secure
Fast Conversion
High Accuracy

Free Online Slugify Converter

Our string formatting tool instantly transforms your normal text, sentences, or code variables into Slugify. Simply paste your content, and the tool will automatically handle spaces and capitalization.

How to convert

1. Paste Case text

Paste or type your Case content into the input area.

2. Conversion Process

Our tool automatically converts your text to Slugify format with the best possible settings.

3. Copy Slugify

The conversion is complete. You can now copy the result directly to your clipboard.

Frequently Asked Questions

Conversion Specs

InputCase
OutputSlugify
SafetyHTTPS / Auto-delete
Price
Free

Using code

slugify

Converts a given string into a URL-friendly slug by normalizing unicode characters (removing diacritics/accents), converting to lowercase, replacing non-alphanumeric characters with hyphens, and trimming leading/trailing hyphens.

Parameters

NameTypeDescription
textstringThe text to slugify.

Returns

stringThe slugified string.
npm i @razomy/string-case
import {slugify} from '@razomy/string-case';

slugify('Hello World');
// => hello-world

slugify('Foo & Bar');
// => foo-bar

slugify('Crème Brûlée');
// => creme-brulee