url-encode
Encode text into URL format to ensure proper transmission in web addresses and APIs. Simplify URL encoding for developers and system administrators.
Instructions
URL encode text
Input Schema
Name | Required | Description | Default |
---|---|---|---|
text | Yes | Text to URL encode |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"text": {
"description": "Text to URL encode",
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}