9 new free developer tools — March 2026
All of them run entirely in your browser. No accounts, no uploads, no limits.
We shipped a big batch of tools today. Here's what's new.
Password Generator
Generates cryptographically secure passwords using crypto.getRandomValues() — the same entropy source as TLS. Choose length (8–64 characters), toggle uppercase, digits, and symbols, and exclude ambiguous characters like 0, O, I, and l. A strength bar shows Weak / Fair / Good / Strong based on length and character variety. Nothing is sent anywhere.
Bcrypt Generator
Hash and verify passwords with bcrypt directly in the browser, powered by bcryptjs loaded from a CDN. The Hash tab lets you pick a cost factor from 4 to 12 — higher costs take longer but are more resistant to brute force. The Verify tab checks a plaintext password against an existing hash. Useful for testing backend auth logic without spinning up a server.
Schema Markup Generator
Generates valid JSON-LD structured data for six schema types: Article, Product, FAQ, HowTo, LocalBusiness, and Person. Fill in the fields, copy the <script type="application/ld+json"> block, paste it into your page's <head>. Google uses this to power rich results — FAQ dropdowns, product prices, star ratings, breadcrumbs.
Meta Tag Generator
Generates the full set of meta tags needed for SEO and social sharing: <title>, meta description, canonical URL, Open Graph tags, and Twitter Card tags. Title and description fields show live character counts with color feedback — green when you're in the optimal range, amber when too short, red when too long. Open Graph and Twitter Card fields fall back to your basic title and description if left empty, so you only fill in what's different.
Robots.txt Generator
Builds a valid robots.txt file from a visual rule builder. Four presets get you started fast:
- Allow All —
User-agent: * / Allow: / - Block All —
User-agent: * / Disallow: / - Block AI bots — disallows GPTBot, CCBot, anthropic-ai, Claude-Web, and Google-Extended
- WordPress — blocks
/wp-admin/and/wp-includes/
You can add custom rules, mix user agents, and include your sitemap URL. Optional crawl-delay field included.
YAML to JSON Converter
Converts YAML to JSON and JSON to YAML, bidirectionally. Paste into either panel and the other updates instantly. Powered by js-yaml loaded from jsDelivr. Useful for working with Kubernetes configs, GitHub Actions workflows, or any API that needs one format and you have the other.
XML to JSON Converter
Converts XML to JSON using the browser's built-in DOMParser — no library needed. Attributes become keys prefixed with @ (e.g. <item id="1"> → {"item": {"@id": "1"}}). Repeated sibling elements with the same tag name are automatically merged into a JSON array. Works with any well-formed XML: RSS feeds, SOAP responses, config files, SVG metadata.
API Key Generator
Generates cryptographically secure API keys in three formats:
- Hex — lowercase
a-fand0-9. Standard format, widely supported. - Base64url — URL-safe base64, more compact than hex for the same entropy.
- Alphanumeric —
A-Z a-z 0-9. Most human-readable.
Choose byte length from 8 to 128. At 32 bytes (64 hex chars), you get 256 bits of entropy — the same as AES-256. Generate up to 20 keys at once. All generation happens locally via crypto.getRandomValues().
UTM Builder
Builds UTM-tagged URLs for Google Analytics campaign tracking. Paste a destination URL, fill in source, medium, campaign, and optional term and content parameters, and get the tagged URL instantly. The full configuration is saved in the URL hash — bookmark it or share it with your team to reuse the same UTM setup.
What else shipped
Alongside the new tools, the site got a category navigation bar in the topbar — Converter, PDF, Text, Image, Color, Developer, and Marketing — so you can jump between tool categories without digging through the sidebar. The links are static HTML on every page, which helps search engines understand the site's structure.