url-decode
Decode URL-encoded text to retrieve original content. Use this tool to transform percent-encoded strings into readable text for better data interpretation and processing.
Instructions
URL decode text
Input Schema
Name | Required | Description | Default |
---|---|---|---|
text | Yes | URL encoded text to decode |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"text": {
"description": "URL encoded text to decode",
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}