Text transformation
Reshape strings the way every CMS, scraper, and content pipeline ends up doing manually. Slugify turns titles into URL-safe slugs (with deterministic transliteration for non-ASCII characters); the case converter cycles between camelCase, kebab-case, snake_case, PascalCase, Title Case, and screaming SNAKE_CASE; URL encode / decode roundtrips through `application/x-www-form-urlencoded`; and lorem-ipsum generates filler copy at word, sentence, or paragraph granularity. Each output is deterministic and cacheable.
Lorem Ipsum
Generate Lorem ipsum placeholder text.
Slugify
Turn a string into a URL-safe slug.
Text case convert
Convert a string between case styles (camel / snake / kebab / Pascal / Title / etc.).
URL decode
URL-decode a string (`%XX` → original characters).
URL encode
URL-encode a string for safe use in URL paths or query parameters.