Developer tools

Free browser-based developer utilities — crypto, IDs, scheduling, references. Everything runs locally — no data leaves your device.

Generate MD5 SHA-256 Hash Online
Generate MD5, SHA-1, SHA-256, and SHA-512 hashes from any text input instantly.
Crypto
Decode JWT Token Online
Decode and inspect JWT tokens instantly — view header, payload, and signature.
Crypto
Bcrypt Generator
Hash passwords with bcrypt in your browser. Choose cost factor, generate secure hashes, and verify passwords. No upload — runs locally.
Crypto
Password Generator
Generate cryptographically secure passwords with custom length, character sets, and strength check. Fully offline — no data ever leaves your browser.
Crypto
Meta Tag Generator
Generate HTML meta tags for SEO and social sharing. Covers title, description, canonical, Open Graph, and Twitter Card tags.
Generate
Robots.txt Generator
Generate a valid robots.txt file for your website. Control which bots can crawl your pages, block AI scrapers, and add your sitemap URL.
Generate
Schema Markup Generator
Generate JSON-LD structured data for Article, Product, FAQ, HowTo, LocalBusiness, and more. Copy and paste into your HTML head.
Generate
API Key Generator
Generate cryptographically secure API keys in hex, base64, or alphanumeric formats. Runs offline in your browser.
Generate
Generate UUID v4 Online
Generate one or many UUIDs instantly — supports v1, v4, and v5.
Generate
Cron Expression Builder & Decoder
Build and decode cron expressions with a visual editor.
Generate
Number Base Converter
Convert numbers between decimal, hexadecimal, binary, and octal instantly. Supports integers and fractions.
Calculator
Scientific Calculator Online
Full-featured scientific calculator with trigonometry, logarithms, exponents, and expression history.
Calculator
Graph Calculator — Plot Functions
Plot mathematical functions on an interactive graph. Supports multiple equations, zoom, pan, and real-time updates.
Calculator
Algebra Calculator — Solve & Simplify
Simplify expressions, factor polynomials, solve equations, and compute derivatives. Renders math with LaTeX.
Calculator
Percentage Calculator Online
Calculate percentages, increases, decreases, proportions, and find original values before percentage changes. 9 calculation types.
Calculator
Paper Sizes Reference
Complete reference for paper sizes — A series, US Letter, Legal, Tabloid, and more. Search and filter by name or dimensions.
Reference
Tailwind CSS Cheat Sheet
Quick reference for Tailwind CSS classes — spacing, typography, colors, flexbox, grid, and more. Search and copy any class.
Reference

About these developer tools

This page collects the small utilities that come up over and over in day-to-day engineering work — encoding and decoding tokens, hashing strings, generating identifiers, building cron schedules, testing regular expressions, and producing secure random values. They are the kind of tasks that interrupt real work for thirty seconds, and a fast, browser-based tool is usually faster than writing a one-off script or opening an IDE.

What you can do here

The tools split roughly into four jobs. Inspection tools read structured data and show you what is inside — for example, the JWT decoder splits a token into its header, payload, and signature so you can verify claims, audience, and expiry without a debugger. Generation tools produce values on demand: the UUID generator emits v1, v4, and v5 identifiers in bulk, and the password generator uses the browser's cryptographic random source rather than Math.random. Hashing tools compute fingerprints — the hash generator covers MD5, SHA-1, SHA-256, and SHA-512 at once, useful for checksums, cache keys, and integrity checks. Reference tools sit alongside, like the cron expression builder and the regex tester, which let you preview a schedule or a pattern before you commit it to production.

When to use which

Reach for the JWT decoder when you need to read a token you already have. Use the hash generator when comparing file fingerprints or producing stable cache keys. Use the UUID generator when seeding a database or writing fixtures. Use the regex tester when a pattern works in one engine but not another, or to debug a backreference that is matching the wrong group. Each tool keeps state in the URL or in localStorage where it makes sense, so you can paste the page link into a ticket or come back to it later without losing context.

Privacy

Everything on this page runs in your browser. Tokens, plaintext, generated identifiers, and any input you paste stay on your device — nothing is sent to a server, logged, or stored remotely. That makes these safe to use on real production credentials, internal API responses, or anything else you would not want flowing through a third party.