fork download
  1. <?php
  2.  
  3. $char = '🌠';
  4.  
  5. for ( $i=0; $i<strlen( $char);$i++ ) {
  6. echo $i . ' %'.dechex(ord($char[$i]))."\n";
  7. }
  8.  
  9. ?>
  10.  
Success #stdin #stdout 0.02s 52432KB
stdin
Standard input is empty
stdout
0 %f0
1 %9f
2 %8c
3 %a0