Developer Tools: Free, Private, No Tracking

Eighteen tools for the small tasks that interrupt development work: decoding a token, formatting a payload, working out what a cron expression does. All of them run entirely in your browser, which matters here more than in most categories, since the input is often a real token or a production configuration.

Encoding & Data

Hashing & IDs

Networking & Numbers

Date & Time

Text & Code

Design & Color

Why local processing matters for these tools

The typical input to a developer tool is not neutral. Decoding a JWT means pasting a session token. Formatting a JSON response means pasting whatever that response contained, frequently including customer data. Diffing two configuration files means pasting connection strings and API keys.

Sending that to an unknown server is a habit worth avoiding, and many online tools do exactly that without saying so. Every tool here is implemented in JavaScript running in your browser. After the page loads, the operation itself makes no network request, which you can verify in the Network tab of your browser's developer tools.

One tool deliberately omits a feature for the same reason: the JWT decoder does not verify signatures, because verification would require you to paste your signing secret. A site asking for that is asking for the key to forge tokens for every user of your system. Verification belongs in your server-side middleware.

Which tool for which task

TaskTool
Decode a Base64 string or data URIBase64
Escape a value for a URL query stringURL encode
Read a minified API responseJSON formatter
Generate typed models from a payloadJSON to C#
Turn a spreadsheet export into JSONCSV and JSON
Verify a download checksumHash generator
Create a unique identifierGUID generator
See what claims a token carriesJWT decoder
Convert between hex, binary, and decimalNumber base
Work out a network's usable host rangeSubnet calculator
Convert a log timestamp to a dateUnix timestamp
Decode a .NET DateTime.Ticks value.NET ticks
Understand or write a cron scheduleCron expressions
Rename identifiers between conventionsCase converter
Test a pattern you already haveRegEx tester
Build a pattern you do not know yetRegEx builder
See what changed between two filesText diff
Convert a colour between HEX, RGB, and HSLColour converter

Related