Skip to content
Reembun
19 tools

Developer

JSON, Base64, hashes, UUIDs and URL encoding.

Your files stay on your device. The tool works directly in your browser, using your device to process your files. Nothing is sent to our servers, and we never receive, store, or see your files or figures.

Safe for payloads you should not paste elsewhere

Developers routinely paste API responses, JWTs, config fragments and production data into online formatters. Most of those tools are server-side, which means that payload has been transmitted and quite possibly logged.

Everything here runs in your browser. That does not make a browser tab a secure enclave, since extensions and screen sharing are still real, but it does remove the network hop entirely, which is the part you cannot audit.

The tools

  • JSON formatter: beautify, minify and validate with the exact error line and column, plus a structural summary and key sorting.
  • Base64 encode and decode: correct UTF-8 handling for every language, a URL-safe alphabet option, and file encoding.
  • Hash generator: MD5, SHA-1, SHA-256, SHA-384 and SHA-512 for text or any file, for verifying downloads and checksums.
  • UUID generator: random v4 and time-sortable v7, in bulk, with formatting options.
  • URL encoder and decoder: percent encoding in both component and full-URL modes, plus a query parameter breakdown.

Correctness details that bite

Several of these tools exist because the naive implementation is subtly wrong. Base64 through btoa corrupts anything outside Latin-1. JSON numbers beyond 253 lose precision silently, which breaks 64-bit IDs from APIs. Percent-encoding a whole URL with encodeURIComponent destroys it. Each tool documents the trap it avoids.