Crypto Hash, Cipher & Key Generators

Generate MD5, SHA-256 hashes, generate passwords, and binary keys.

All Tools

Choose from our collection of free, accurate tools

BMI Calculator

The Number That Launched a Thousand Diets — And Why a BMI Calculator Is More Useful Than You Think Few health…

Use Tool →

Tip Calculator

How a Tip Calculator Quietly Transformed Our Restaurant Staff's Night-End Routine Last spring, I started cons…

Use Tool →

Fuel Efficiency Converter

What Is a Fuel Efficiency Converter and Why You Actually Need One Fuel efficiency numbers are deceptively con…

Use Tool →

Shoe Size Converter

Why Shoe Sizing Is a Nightmare — and How an Online Converter Fixes It If you have ever ordered shoes from a J…

Use Tool →

Cooking Converter

Why Kitchen Math Ruins Recipes (And What Actually Fixes It) You're halfway through a recipe when you hit the …

Use Tool →

Fraction to Decimal

What Does a Fraction to Decimal Converter Actually Do? A Fraction to Decimal online tool takes any fraction y…

Use Tool →

Percentage Calculator

Why You Probably Need a Percentage Calculator More Than You Think Here's a moment most of us have experienced…

Use Tool →

Binary Converter

Binary Converter: The Essential Tool for Working with Machine-Level Data Every piece of data that flows throu…

Use Tool →

Roman Numeral Converter

What Is a Roman Numeral Converter and Why Would You Actually Need One? Roman numerals show up in more places …

Use Tool →

Number to Words

The Day a Spreadsheet Saved My Grandmother's Will My grandmother had been writing checks by hand for sixty-th…

Use Tool →
🔐

Base64 Encoder / Decoder

Instantly encode any text to Base64 or decode Base64 strings back to readable text — with full UTF-8 and Unic…

Use Tool →
🖼️

Base64 to Image Converter

Paste any Base64 string or data URI and instantly preview the decoded image, download it as PNG/JPG/GIF/SVG/W…

Use Tool →
📤

Image to Base64 (Data URI) Generator

Drop any image and instantly get a Base64 data URI you can paste directly into HTML img tags, CSS background-…

Use Tool →
🔗

URL Encoder / Decoder

Instantly percent-encode or decode URLs and query parameters with full-component and form-encoding modes — no…

Use Tool →
🧬

MD5 Hash Generator

Generate an MD5 checksum from any text or file entirely in your browser — no uploads, no servers, instant fin…

Use Tool →
🛡️

SHA-256 Hash Generator

Compute SHA-256 hashes of any text or file directly in your browser using the Web Crypto API — no uploads, no…

Use Tool →
🔢

Multi-Hash Generator (MD5 / SHA-1 / SHA-256 / SHA-512)

Hash any text or file content across MD5, SHA-1, SHA-256, and SHA-512 simultaneously — compare all four diges…

Use Tool →
🧩

Base64URL Encoder / Decoder

Convert plain text to and from URL-safe Base64 — the format used in JWTs, OAuth tokens, and modern APIs — wit…

Use Tool →
♻️

Hex / Base64 / Text Converter

Instantly convert between hexadecimal, Base64, and raw text in any direction — byte-accurate, offline, no lib…

Use Tool →
🪙

JWT Decoder

Instantly decode any JSON Web Token right in your browser — see the header algorithm, payload claims, and exp…

Use Tool →
🗝️

HMAC Generator (SHA-256 / SHA-1 / SHA-512)

Generate keyed HMAC signatures using SHA-256, SHA-1, or SHA-512 — in hex or Base64 output — directly in your …

Use Tool →

File Hash Checksum Verifier

Drop any file into this offline tool to instantly compute its MD5, SHA-1, SHA-256, SHA-384, or SHA-512 hash, …

Use Tool →

Why a developer runs these in the browser instead of a random API

Every tool on this page — the Base64 encoder/decoder, the MD5 and SHA-256 generators, the Multi-Hash generator, the HMAC signer, the JWT decoder, the file checksum verifier — executes entirely inside the tab you have open right now. There is no upload step, no round trip to a backend, no logging middleware quietly recording the API key you just hashed. That distinction matters more than it sounds. The moment you paste a session token into a web form that posts to a server, you have effectively disclosed that token to whoever owns the server, and you have no way to prove they didn't store it. Client-side tools remove that trust question completely: the JavaScript reads your input, computes the result in memory, and paints it back to the screen. Open your network tab and watch — nothing outbound.

For engineers this is not paranoia, it's hygiene. A checksum you verify to confirm a downloaded binary wasn't tampered with should never depend on a third party that could return a fake "match." An HMAC you generate to test a webhook signature has to use exactly the secret and algorithm your production code uses, computed the same way, or the test is worthless. Doing that work locally means the output is deterministic and auditable. MiniConvert leans hard into that model: fast, single-purpose utilities that a backend developer, a security engineer, or someone debugging an OAuth flow at 1 a.m. can reach for without wondering where their data went.

Base64, URL encoding and data URIs — the plumbing of the web

Base64 is one of those things you use constantly without thinking about, until it breaks. It is not encryption — it's a way to represent arbitrary bytes using 64 safe ASCII characters so binary data can survive channels that only expect text: JSON payloads, email MIME bodies, HTML attributes, config files. The Base64 Encoder/Decoder here handles full UTF-8 and Unicode correctly, which is where many quick-and-dirty implementations fall over — emoji, accented characters, and multibyte scripts get mangled if the tool naively assumes one byte per character. Use it to embed a small logo directly in a CSS file, to decode a suspicious-looking string from a log, or to sanity-check what an API is actually sending you before you blame your own code.

The Base64URL variant swaps the '+' and '/' characters for '-' and '_' and drops padding, so the output is safe to drop straight into a URL or a JWT segment without further escaping — decode a token's header or payload by hand when you need to. The URL Encoder/Decoder covers the other common escaping problem: query strings, path segments, and form bodies each have slightly different rules, so it offers both full-component and form-encoding modes rather than pretending one size fits all. Then there's the pair of image utilities. Image to Base64 turns any file you drop in into a ready-to-paste data URI for an <img> tag or a CSS background-image, handy for eliminating an extra HTTP request on a tiny asset. Base64 to Image runs it the other way, previewing and downloading the decoded picture as PNG, JPG, GIF, SVG or WebP so you can confirm what a data URI actually contains.

Hashing done right: MD5, SHA, multi-hash and file checksums

Hashing collapses any input, from a three-letter string to a two-gigabyte ISO, into a fixed-length fingerprint. Change one bit of the input and the fingerprint changes completely, which is exactly why hashes are the workhorse of integrity checking. The MD5 and SHA-256 generators here take text or a whole file and give you the digest instantly. A word of professional caution the tool won't nag you about but you should internalise: MD5 and SHA-1 are cryptographically broken for anything security-sensitive. Use them for non-adversarial checksums, cache keys, or matching a vendor's published MD5 — never for password storage or signatures. Reach for SHA-256 (or SHA-512) when an attacker might be motivated to forge a collision.

The Multi-Hash generator is the one most developers end up bookmarking, because it produces MD5, SHA-1, SHA-256 and SHA-512 from the same input in a single pass. That's perfect for the daily reality of software distribution, where a download page might list a SHA-256 while your package manager expects a SHA-512 — you get both without re-pasting. The File Hash Checksum Verifier is the practical companion: drop the file you downloaded, paste the expected value from the source, and it tells you plainly whether they match. This is the single most underused security step in normal development. If a mirror was compromised or a transfer corrupted, a two-second checksum comparison catches it before a bad binary ever runs on your machine. The Hex / Base64 / Text converter rounds this out, letting you flip a value between representations when a hash comes to you in the wrong encoding.

HMAC and JWT: verifying signatures without leaking secrets

When you move from "did this change?" to "did the right party create this?", you need a keyed operation, and that's where HMAC and JWTs live. The HMAC generator combines your secret key with your message under SHA-256, SHA-1 or SHA-512 to produce a signature that only someone holding the same secret can reproduce. This is the exact mechanism behind webhook verification — Stripe, GitHub, and countless internal systems sign their payloads so your endpoint can reject forged requests. When a webhook signature check keeps failing, generating the HMAC here by hand, with the same raw body and secret, tells you instantly whether the problem is your key, your algorithm, or a body your framework silently reformatted before hashing.

The JWT Decoder splits a token into its header, payload and signature and renders the first two as readable JSON so you can inspect claims — issuer, audience, expiry, scopes — during an auth debugging session. Crucially it decodes without needing your signing secret, because the header and payload are only Base64URL-encoded, not encrypted; that's a fact about JWTs worth understanding, since it means you should never put anything confidential in a token's payload. Because every one of these operations runs locally, you can paste a real production secret or a live token to reproduce an issue and trust that it stays on your screen. That combination — real inputs, honest cryptography, zero exfiltration — is the whole point of building a developer toolkit this way, and it's what MiniConvert is here to be.

Built to Be Useful

🔥

Effortless

Type, click, done — it really is that simple.

🎁

Free to Use

All tools are completely free, no strings attached.

🔎

Transparent

We show how the numbers are worked out.

🖥

Cross-Device

Looks and works great on any device.

Latest from Our Blog