Free, browser-based utilities for everyday developer workflows

URL & Payload Encoding Suite

Base64URL, Hex, Gzip/Deflate, and Querystring conversions in one place. Runs locally in your browser. No uploads.

Common use cases

  • Encode JWT payloads with Base64URL and inspect raw claims.
  • Compress API payloads with gzip/deflate to debug network traffic.
  • Convert querystrings to JSON for quick inspection or editing.

Choose a function

Input

Output

Advanced API Payload Workbench

Build layered browser-local recipes, inspect typed intermediate outputs, diagnose compression, and mask secrets before sharing.

Encoding is not encryption. Decoded payloads may contain secrets. This workbench runs locally in your browser and does not upload payloads, files, recipes, reports, or intermediate outputs.

Recipe

Presets

Import / Export

Notes
  • Base64URL follows RFC 4648 URL-safe encoding with optional padding.
  • Gzip/deflate uses the native Compression Streams API when available, with a local fallback.
  • No network calls: all processing stays in your browser tab.

How to use the URL & Payload Encoding Suite

One place to encode or decode the encoding formats you actually meet in API debugging: Base64, Base64URL, Hex, Gzip, Deflate, percent-encoding, HTML entities, and UTF-8 byte conversions. Chain encodings end-to-end — for example, Base64URL → Gzip → JSON — to peel apart compressed tokens, layered query parameters, and packed payloads. Everything runs locally; payloads never leave your browser.

What it does

When to use it

How to use it

  1. Pick an encoding type from the list (Base64, Base64URL, Hex, Gzip, Deflate, percent-encoding, HTML entities).
  2. Paste your input.
  3. Click Encode or Decode; the result appears instantly.
  4. To handle layered payloads, add another step to the pipeline (e.g., Base64URL decode → Gzip decompress → format as JSON).
  5. Send the final clean output to the JSON Formatter, JWT Decoder, or wherever it makes sense.

Tips & pitfalls

FAQ

Runs locally in your browser. No uploads. Share links use an encrypted URL fragment — nothing is sent to a server.