# safe_output

**Descripción**

Convierte las entidades HTML a sus caracteres correspondientes en la cadena de entrada.

**Parámetros**

<table border="1" id="bkmrk-module-acepta-el-tip" style="height: 58px; width: 532px;"><tbody><tr style="height: 29px;"><td style="height: 29px; width: 102px;">**Nombre** </td><td style="height: 29px; width: 49px;">**Tipo**</td><td style="height: 29px; width: 92px;">**Requerido**</td><td style="height: 29px; width: 289px;">**Descripción**</td></tr><tr style="height: 29px;"><td style="height: 29px; width: 102px;">input\_string</td><td style="height: 29px; width: 49px;">str</td><td style="height: 29px; width: 92px;">Si</td><td style="height: 29px; width: 289px;">La cadena de caracteres claros descodificada</td></tr></tbody></table>

**Return**

<table border="1" id="bkmrk-tipo-none" style="border-collapse: collapse; width: 100%;"><tbody><tr><td style="width: 100%;">**Tipo**</td></tr><tr><td style="width: 100%;">None</td></tr></tbody></table>

**Versión**

- 1.0.0

**Ejemplo**

```
import pandoraPlugintools as pt

# Define an input string with HTML entities
input_string = "&lt;p&gt;Hello, &lt;b&gt;world&lt;/b&gt;!&lt;/p&gt;"

# Use the safe_output function to convert HTML entities back to characters
decoded_string = pt.general.safe_output(input_string)

# Print the decoded string
print("Decoded string:", decoded_string)
```