pipr.tools
Pipes
Clean Email Strip formatting from pasted email for clean plain text Clean AI Output Clean plain text from ChatGPT or AI output Decode & Format JWT Decode a JWT and pretty-print header and payload Word Frequency Count word frequency in text

Minify & Encode JSON

Base64-encoded minified JSON

Encode/Decode
Input0 chars
Output0 chars

Examples

Minify and Base64-encode a JSON config for URL embedding

Usage
"{
  "name": "Alice",
  "role": "admin",
  "active": true
}" | json-minify | base64-encode

Encode user preferences as a Base64 token

Usage
"{
  "theme": "dark",
  "lang": "en",
  "notifications": true..." | json-minify | base64-encode

Compress a JSON payload for a query string parameter

Usage
"{
  "from": "USD",
  "to": "EUR",
  "amount": 100
}" | json-minify | base64-encode