Show Output
Convert Special HTML Entities Back to Characters in PHP
dense forest."; // Encoding the string $encoded_str = htmlspecialchars($str); echo $encoded_str . "
"; // Decoding the string $decoded_str = htmlspecialchars_decode($encoded_str); echo $decoded_str; ?>