The developer tools you reach for every day, all in one place.

Converters, formatters, hashes, validators, and the small utilities you keep reopening stay together instead of getting lost across tabs.

GitHub

/ Tools

/ Tool Finder
109 tools
/ Slug Generator
/ Selected Tool

Slug Generator

Generate URL-friendly slugs from text

01

What is a URL Slug?

A URL slug is the part of a web address that identifies a specific page in a user-friendly format. Slugs are typically lowercase, contain only letters, numbers, and hyphens, and are used to create clean, readable URLs t…

02

How does it work?

Slug Generation Process The generator processes your text through several steps: transliterating special characters (like accented letters), converting to lowercase, removing non-alphanumeric characters, and replacing s…

03

Sample Cases

Covers Blog post title, With special characters, and International text so you can compare common inputs and outputs quickly.

/ Code

/ Integration

Source code from the selected tool, shown here alongside the live version on the right.

/ Source Code
TypeScript
typescript
const TRANSLITERATION_MAP: Record<string, string> = {
  'à': 'a', 'á': 'a', 'â': 'a', 'ã': 'a', 'ä': 'a', 'å': 'a', 'æ': 'ae',
  'ç': 'c', 'è': 'e', 'é': 'e', 'ê': 'e', 'ë': 'e',
  'ñ': 'n', 'ö': 'o', 'ü': 'u', 'ß': 'ss',
  // ... more mappings
};

function generateSlug(
  text: string,
  options: {
Buidl Now icon

Keep every utility in one place and stay inside the build flow.

Pick a tool, finish the check, copy what you need, and get back to the actual product work.

Developer tools for builders who ship fast.© 2026 Buidl Now. All rights reserved.