NetOpsT

URL Encoder and Decoder

Encode and decode URL-safe text locally.

Runs locally

DEVELOPER

Developer tools

JSON Formatter & Validator

Validate, pretty-print or minify JSON.

Use it to check API responses, configuration files and logs before pasting them into another system.

Uses JavaScript JSON parsing: large integers may lose precision and duplicate keys keep their last value.

How to use & example
  1. Paste JSON into the Input box.
  2. Choose Format JSON for readable indentation or Minify JSON for a compact single line.
  3. Fix any validation message, then copy the result.
EXAMPLE INPUT{"server":"web01","port":443}
EXPECTED RESULT{ "server": "web01", "port": 443 }

Base64 Encoder / Decoder

Convert UTF-8 text to and from Base64.

Use it when an API, script or configuration field expects Base64 text, or when you need to inspect an existing Base64 value.

UTF-8 text supported. Base64 is encoding, not encryption.

How to use & example
  1. Enter normal text and choose Encode.
  2. To reverse the operation, paste a Base64 value and choose Decode.
  3. Never use Base64 to protect passwords or secrets—it is not encryption.
EXAMPLE INPUTServer: web01
EXPECTED RESULTU2VydmVyOiB3ZWIwMQ==

URL Component Encoder / Decoder

Escape and restore query parameter values.

Use it to safely place text inside a URL query parameter, redirect value or API request.

Encodes a URL component, such as a query parameter value, not an entire URL.

How to use & example
  1. Enter the value you want to place inside a URL.
  2. Choose Encode and use the result as the parameter value.
  3. Paste an encoded component and choose Decode to make it readable again.
EXAMPLE INPUTNetwork & Cloud
EXPECTED RESULTNetwork%20%26%20Cloud

Developer TOOL

URL Encoder and Decoder

Encode and decode URL-safe text locally.

When to use this tool

Use it when building query strings, API calls or redirect URLs.

Use it in three steps

  1. Paste text, choose encode or decode, and copy the converted value.
  2. Review the calculated values against your environment and its requirements.
  3. Copy or document the result only after validating it for production use.

Related Developer tools