Prepare the input
Paste the human title, category, filename stem, or label. Remove private IDs and volatile dates unless they intentionally belong in the permanent route.
Turn a title into a clean URL segment
Normalize accents, lowercase text, replace symbol runs with hyphens or underscores, and preserve Unicode letters for reviewable browser-only slug creation.
Counting and transformations run locally. Nirmion does not send the text in this workspace to an API.
Product guide
Paste the human title, category, filename stem, or label. Remove private IDs and volatile dates unless they intentionally belong in the permanent route.
Choose hyphens for conventional web URLs or underscores for systems that require them. Combining accents are removed after NFKD normalization, ampersands become and, and other symbol runs become one separator.
Check uniqueness, length, language, reserved paths, and downstream encoding. Unicode letters are valid in modern URLs but may display percent-encoded in some contexts, so choose an ASCII transliteration policy when your platform requires one.
How it works
The source is normalized with NFKD, combining marks are removed, ampersands become the English word and, and letters are lowercased. Runs that are not Unicode letters or numbers become the selected separator, repeated separators collapse, and outer separators are removed. Non-Latin letters remain rather than being discarded or inaccurately romanized.
Useful when
Slug generation is a formatting step within a broader routing or naming workflow.
Questions answered
Practical boundaries matter with text tools. These answers explain what is measured, what is retained, and when a manual review is still needed.
No. It removes combining accent marks where decomposition supports that, but keeps other Unicode letters. Automatic transliteration can be language-dependent and misleading, so use a reviewed language-specific policy when ASCII is required.
No. The tool has no access to your route table or database. Check for collisions and reserved paths before saving it.
Only with a migration plan. Preserve canonical signals and add a permanent redirect from the old route when a public URL changes.
Privacy and retention
Nirmion performs these operations with browser JavaScript. The workspace does not call the catalogue API with your source text, and completed-job content is kept only in this component memory for re-download.
A downloaded file remains in your browser downloads, device storage, backups, and any location where you share it. Clear or close the page when working on a shared device, and avoid pasting secrets into extensions or third-party clipboard managers.
Tool details
Nirmion Slug Generator converts titles and labels to lowercase, separator-normalized URL candidates. It removes decomposable accent marks, expands ampersands, keeps Unicode letters and numbers, and offers hyphen or underscore output without sending source text to a server.
Output downloads as text_nirmion_tools_slug.txt. The page explains that slug formatting does not provide uniqueness, transliteration, redirect management, or SEO guarantees, helping teams treat the result as a reviewable candidate rather than an automatic production route.