html-decode
Convert HTML entities back into readable text using this decoding tool. Ideal for developers working with encoded HTML content.
Instructions
Decode HTML entities
Input Schema
Name | Required | Description | Default |
---|---|---|---|
text | Yes | HTML encoded text to decode |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"text": {
"description": "HTML encoded text to decode",
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}