Text Tools — Word count, case convert, lorem ipsum, slug, diff.
Free text utilities for writers, editors, marketers, and anyone working with documents. Count words and characters for SEO articles, convert case (UPPER, lower, Title), generate Lorem Ipsum placeholder text, create URL slugs, and compare two text blocks side-by-side. Browser-side and instant.
Why writers, editors, and devs end up here daily
Text utilities are the most boring category of online tool — and the most used. A word counter sees more daily traffic than most popular SaaS products. A slug generator is opened thousands of times by marketers and developers every workday. Lorem Ipsum is generated more than any other piece of placeholder text in the world. None of this requires elaborate UI or AI; it requires a fast, ad-light page that does exactly one thing well.
Pickrack's four text tools are built that way: each is one page, one input box, instant output, no signup, no popup. They are calibrated for the people who actually use them — SEO writers checking word count against a 1,500-word target, editors converting messy ALL-CAPS subject lines to Sentence case, content marketers turning "Bí quyết tối ưu hóa SEO 2026" into a clean URL slug like bi-quyet-toi-uu-hoa-seo-2026, and developers filling a layout mockup with realistic placeholder paragraphs.
The four text tools and when to reach for each
- Word Counter — counts words, characters (with and without spaces), sentences, paragraphs, and reading time at 200 words per minute. Live updates as you type. Best for SEO articles, essays, novellas, anything with a length constraint.
- Case Converter — 9 conversion variants: UPPERCASE, lowercase, Title Case, Sentence case, camelCase, PascalCase, snake_case, kebab-case, and aLtErNaTiNg cAsE. Unicode-aware so Vietnamese, German umlauts, and other diacritics survive correctly.
- Lorem Ipsum Generator — generate 1-50 paragraphs of realistic Lorem Ipsum for layout mockups. Adjustable paragraph length and starting clause ("Lorem ipsum dolor sit amet..." vs random). Best for design wireframes and HTML/CSS prototype layouts.
- Slug Generator — convert any text into a clean URL slug. Strips diacritics correctly for Vietnamese (handles the special
đ → drule that most generic libraries miss), Spanish, French, German. Lowercase, hyphen-separated, safe for any URL system.
Why Vietnamese diacritic handling is harder than it looks
Most slug generators implement diacritic stripping with the same one-liner: str.normalize("NFD").replace(/[̀-ͯ]/g, ""). This decomposes accented characters into base letter + combining mark, then strips the combining marks. It works for most European diacritics — é → e, ñ → n, ü → u — but fails for Vietnamese đ(the "d with bar"), which is a single Unicode code point with no decomposition.
Pickrack's slug generator handles this correctly with a special-case replacement before the NFD normalize: đ → d and Đ → D. The result is what Vietnamese SEO writers expect: điện thoại becomes dien-thoai, not ien-thoai. If you maintain Vietnamese-language sites, this matters. (Source: slug-generator/page.tsx.)
Word Counter
Count words, characters, sentences, paragraphs, and reading time. Live update as you type.
Case Converter
Convert text to UPPERCASE, lowercase, Title Case, Sentence case, camelCase, snake_case, kebab-case.
Lorem Ipsum Generator
Generate Lorem Ipsum placeholder text — words, sentences, or paragraphs. Adjustable length.
Slug Generator
Convert any text to URL-friendly slug. Strips diacritics (Vietnamese đ, ư, ê) and special chars.
Markdown to HTML
Convert Markdown to clean HTML with GitHub-Flavored extensions. Live preview, copy HTML or download .html.
Why use these tools?
- Privacy first. Browser-side tools process your data locally. Server-side tools are explicitly labeled and delete inputs immediately after response.
- Free, forever. No daily limits, no watermarks, no signup, no premium tier.
- No tracking inside the tool. Tools have zero analytics on the data you process — site analytics (page views) are anonymous.
- Open implementation. Underlying engines are open-source — verify the security model.
Frequently asked
Who uses these tools?+
Writers (word counters for SEO articles, essays), editors (case conversion, diff checking), marketers (slug generators for URLs), and developers (Lorem Ipsum for mockups). Anyone who works with text regularly will find one or two tools they use daily.
Do these tools work for non-English text?+
Word counter handles Vietnamese, Spanish, French, German correctly (whitespace-separated). Chinese/Japanese (no spaces) is approximate but still useful for length comparison. Case conversion is Unicode-aware. Slug generation supports diacritic stripping for Vietnamese (đ → d, etc.).
Is there a maximum text length?+
No hard limit. Browsers handle ~5MB of text comfortably in a textarea. Beyond that, performance drops — copy in chunks if needed.
How is reading time calculated?+
Default is 200 words per minute (average adult silent reading). Adjust for your audience: ~150 wpm for read-aloud, ~250 wpm for fast readers. The word counter tool shows live estimates as you type.
Can I save my text or count history?+
v1 tools are stateless — refresh and your text is gone (privacy benefit). For drafts, save to a separate document or a private Notion page. localStorage history is on the roadmap.
What's the difference between case converter and Title Case at Wikipedia?+
Case converter applies one of: UPPERCASE, lowercase, Title Case (capitalize each word), Sentence case (first word + names), or aLtErNaTiNg cAsE (joke). Wikipedia-style title case has specific rules (lowercase short words like 'the', 'of', 'a') — that's a more nuanced editorial choice not yet in our tool.