fork(1) download
  1. <?php
  2.  
  3. $source_code_with_entities = "Oggi &egrave; un bel&nbsp;giorno";
  4. $source_code_without_entities = html_entity_decode($source_code_with_entities);
  5. $utf8_source_code = utf8_encode($source_code_without_entities);
  6.  
  7. print($utf8_source_code);
Success #stdin #stdout 0.02s 25796KB
stdin
Standard input is empty
stdout
Oggi è un bel giorno