URL Encode / Decode
Encode and decode URLs with percent encoding.
Convert any text into a URL-safe slug with customizable separator and case options.
Slug Generator converts titles, headings, and arbitrary text into URL-safe strings suitable for use in web addresses, file names, or database identifiers.
It handles accented characters, symbols, full-width characters, and optional CJK preservation — making it useful for both English and multilingual projects.
A slug is a URL-friendly string made up of alphanumeric characters and separators like hyphens. For example, "Hello World!" becomes "hello-world". Slugs are used in blog post URLs, file names, and database keys.
Accented characters like é and ü are normalized via NFD decomposition and stripped of their diacritics, converting them to their base forms (e and u). This produces clean ASCII-safe slugs.
By default, hiragana, katakana, and kanji are replaced with the separator. Enable "Keep Japanese as-is" to preserve CJK characters in the slug output.
No. All processing happens entirely in your browser.