Coding Tools
All Coding Tools
Developer utilities for encoding, decoding, hashing and converting web data โ free and instant.
URL Encoder
Encode and decode URLs for safe web use.
Base64 Encoder/Decoder
Encode text or files to Base64 and decode Base64 strings.
Markdown to HTML
Convert Markdown to HTML with live preview and download.
Hash Generator
Generate MD5, SHA-1, SHA-256, SHA-384, and SHA-512 hashes.
About
Developer Utilities You Reach for Every Day
Four tools covering the most frequent developer encoding tasks: URL-encode a query string to fix a broken API request, Base64-encode a file for a data URI, convert Markdown to clean HTML for a CMS, or generate a SHA-256 hash to verify file integrity.
All run locally in your browser. Sensitive data like API keys or tokens never leave your device. No account needed โ bookmark and use instantly.
URL Safe Encoding
Encode/decode query strings, params, and full URLs instantly.
Base64 for Any Data
Encode text, files, and binary data. Decode data URIs and API payloads.
Multiple Hash Algorithms
MD5, SHA-1, SHA-256, SHA-512 โ generate hashes for any input.
Markdown Preview & Export
Convert Markdown to HTML and download as a ready-to-use file.
Use Cases
When to Use Coding Tools
Debugging API Requests
Decode a URL-encoded query string to read it, or encode a parameter value that contains special characters breaking your request.
Working with Data URIs
Base64-encode an image or file to embed it directly in HTML/CSS as a data URI โ no external request, no server needed.
Verifying File Integrity
Generate a SHA-256 hash of a file or string to compare against a published checksum and confirm the file hasn't been tampered with.
Writing Documentation
Write in Markdown and instantly preview the rendered HTML output. Download the HTML file to paste into a CMS or static site.
JWT & Token Inspection
Base64-decode a JWT payload or API token to inspect its claims and structure without needing a dedicated JWT debugger.
Encoding Form Data
Manually build URL-encoded form POST bodies or fix encoded redirect URLs in OAuth and SSO flows.
FAQ
Frequently Asked Questions
What is URL encoding?
It converts special characters in URLs (spaces, &, =, #) into percent-encoded format (%20, %26) so they don't break query strings or request bodies.
What is Base64 used for?
Encoding binary data as ASCII text. Common uses: data URIs for images in HTML/CSS, email attachments, API payloads, and storing binary in JSON.
Is my data sent to a server?
No. All encoding, decoding, hashing, and conversion runs locally in your browser. Your data never leaves your device.
What hashing algorithms are supported?
MD5, SHA-1, SHA-256, and SHA-512. Select from the dropdown and hash any text or string instantly.
Can I convert Markdown to HTML?
Yes. Paste Markdown, get instant HTML output, preview the result, and download as a .html file.
What's the difference between URL and HTML encoding?
URL encoding escapes for use in URLs (%20 for spaces). HTML encoding escapes for HTML markup (< for <). Different contexts, different formats.