Seven small utilities for text and code that developers reach for constantly — minify a stylesheet, beautify a JSON blob, hash a string, generate a robots.txt — each one paste-in, get-result-instantly, with nothing to configure first.
Minify and beautify
Code Minifier strips whitespace and comments from HTML, CSS and JavaScript to shrink file size for production. Code Beautifier does the reverse — pretty-prints minified or compressed code back into something readable, for when you're debugging someone else's build output.
Hashing and encoding
MD5 Hash Generator computes a standard MD5 digest of whatever text you paste in. Base64 Encoder/Decoder converts between plain text and Base64 in both directions — useful for embedding binary-ish data in places that only accept text, like data URIs or config files.
Text utilities
Text ↔ HTML Converter escapes and unescapes HTML entities so you can paste code samples into places that would otherwise render them as markup. Text to Slug Converter turns a title into a URL-friendly slug — lowercase, hyphenated, accents stripped. Number to Words Converter spells out numbers in English and parses them back.
Robots.txt Generator
Builds a valid robots.txt from a form instead of hand-writing directive syntax — set which paths to disallow, add a sitemap URL, and download the result.