Example
Input
yutils — Free Online Tools (한국어)
Output (slug)
yutils-free-online-tools-han-gug-eo
Note
Unicode NFD normalization + Korean romanization + ASCII alphanumerics & hyphens. Options for lowercase enforcement, length limits, etc.
Usage / FAQ
When to use
- Generate URL slugs from blog post titles
- Romanize Korean category names into safe ASCII URLs
- Brainstorm GitHub repo / npm package names
- Produce consistent filenames for Notion / Confluence exports
- Normalize image filenames by stripping special characters
FAQ
- Q.How are Korean characters converted?
- A.Korean jamo is romanized (e.g. 안녕 → an-nyeong). Meaning is lost but the result is URL-safe ASCII.
- Q.What about duplicate slugs?
- A.This tool doesn't deduplicate. Append `-2`, `-3` in your DB logic if needed.
- Q.Emojis and special characters?
- A.Stripped by default. Only alphanumerics, hyphens, and (optionally) dots remain.
Fun facts
The 'slug' in URL slug comes from the newspaper printing era — a 'lead slug' was a small piece of metal used to identify or sort an article. The 'short, human-readable identifier' meaning was carried over to blogs and CMSs in the late 1990s as URLs became human-readable.
Wikipedia — Clean URL slugFor SEO, a URL slug should summarize the page's content. Google uses words in the URL as a weak ranking signal — `/articles/how-to-bake-bread` gets a slightly higher click-through rate than `/articles/12345` since users actually read the URL.
Google — URL StructureWhether to embed Unicode Korean / CJK characters in slugs directly vs Romanize (e.g., '안녕하세요' → 'annyeonghaseyo') is a long-running debate. Native characters align with IDN display, but external sites can mangle them via percent-encoding (`%EC%95%88...`) — which is why Korean blogging platforms split between native vs Romanized.
Moz — URL best practices
Related tools
- JSON Formatter / Validator
Format, validate, and minify JSON strings. Adjust indent and optionally sort keys. Runs entirely in your browser.
- String Case Converter
Convert strings between camelCase, PascalCase, snake_case, kebab-case, CONSTANT_CASE, and Title Case — all six cases shown side-by-side.
- Regex Tester
Test JavaScript regular expressions with live match results. Supports g/i/m/s/u/y flags and capture groups.
- Markdown Preview
Render Markdown to HTML side-by-side. Supports CommonMark + GFM (tables, fenced code, task lists). marked is lazy-loaded.
- HTML → Markdown
Convert HTML into Markdown. Headings, lists, links, code, tables, blockquotes. Uses the browser's DOMParser — accurate, 0 dependency.
- YAML ↔ JSON
Convert between YAML and JSON. Tolerates comments and multiline strings on the YAML side. yaml is lazy-loaded.
- Text Diff
Compare two texts and highlight added/removed lines, words, or characters.
- JSON Diff
Compare two JSON values, with optional key sorting and JSON-aware error messages.
- CSV ↔ JSON
Convert between CSV and JSON. Handles quoted fields, custom delimiters, and header rows.
- SQL Formatter
Format SQL queries with proper indentation and keyword casing. Supports PostgreSQL, MySQL, SQLite, and standard dialects.
- XML Formatter
Pretty-print or minify XML with attribute preservation. Handles SOAP, sitemaps, and config files.
- XML ↔ JSON
Convert between XML and JSON with attribute and element handling.
- Smart Paste
Paste any text and get tool recommendations — JSON, JWT, Base64, URL, UUID, Cron, and 9 more types auto-detected.
- Lorem Ipsum
Generate placeholder text in words, sentences, or paragraphs. Classic Lorem Ipsum or randomized.
- JSON Path
Query JSON with JSONPath expressions ($.store.book[*].author etc.) and inspect matches.
- JSON Schema Validator
Validate JSON data against a JSON Schema (Draft 2020-12). Powered by Ajv with format support.
- JSON Schema Generator
Generate a JSON Schema (Draft 2020-12) from a sample JSON. Infer types, required fields, and nested structures automatically.
- HTML Formatter
Beautify or minify HTML with proper indentation, attribute alignment, and configurable wrap.
- CSS Formatter
Beautify or minify CSS with proper indentation. Configurable selector and property style.
- JavaScript Formatter
Beautify or minify JavaScript with brace style and indent options. Powered by js-beautify.
- TOML ↔ JSON
Convert between TOML (Tom's Obvious Minimal Language) and JSON. Used in Cargo.toml, pyproject.toml, etc.
- INI ↔ JSON
Convert INI configuration to JSON and back. Supports sections, comments (; or #), and key=value.
- JSON → TypeScript
Generate TypeScript interfaces from a JSON sample. Nested objects become separate interfaces.
- JS Object → JSON
Convert a JavaScript object literal (unquoted keys, single quotes, trailing commas, comments) into standard JSON. Lenient parser, strict output.
- ASCII Tree
Convert indented text or path list into a box-drawing tree (├── │ └──).
- Diff Patch
Generate a unified diff (-u) patch from two text inputs. Compatible with `git apply` / `patch -p0`.
- Mock Data
Generate fake JSON records — names, emails, UUIDs, dates, and more. 0 dependency.
- MongoDB Extended JSON
Convert MongoDB Extended JSON (EJSON) between Canonical and Relaxed forms, or strip BSON wrappers to plain JSON. Recognizes 16 wrapper types ($oid/$date/$numberLong/$numberDecimal/$binary/...).