See also: http://www.php.net/html_entity_decode = Examples = {text} Text with & " < > replaced by unescaped entities (html_entity_decode applied). {text -> f:format.htmlentitiesDecode(encoding: 'ISO-8859-1')} Text with & " < > replaced by unescaped entities (html_entity_decode applied).
Inheritance: extends Neos\FluidAdaptor\Core\ViewHelper\AbstractViewHelper
 /**
  * @test
  */
 public function renderDoesNotModifySourceIfItIsAnObjectThatCantBeConvertedToAString()
 {
     $user = new UserWithoutToString('Xaver <b>Cross-Site</b>');
     $actualResult = $this->viewHelper->render($user);
     $this->assertSame($user, $actualResult);
 }