decodeHtml
Convert HTML-encoded data back to its original format using this utility. Ideal for handling encoded strings from web sources or APIs.
Instructions
Decode HTML-encoded input data
Input Schema
Name | Required | Description | Default |
---|---|---|---|
input | Yes | Data to decode |
Input Schema (JSON Schema)
{
"properties": {
"input": {
"description": "Data to decode",
"type": "string"
}
},
"required": [
"input"
],
"type": "object"
}