3v4l.org

run code in 300+ PHP versions simultaneously
<?php function hex_dump($data, $newline="\n") { static $from = ''; static $to = ''; static $width = 16; # number of bytes per line static $pad = '.'; # padding for non-visible characters if ($from==='') { for ($i=0; $i<=0xFF; $i++) { $from .= chr($i); $to .= ($i >= 0x20 && $i <= 0x7E) ? chr($i) : $pad; } } $hex = str_split(bin2hex($data), $width*2); $chars = str_split(strtr($data, $from, $to), $width); $offset = 0; foreach ($hex as $i => $line) { echo sprintf('%6X',$offset).' : '.implode(' ', str_split($line,2)) . ' [' . $chars[$i] . ']' . $newline; $offset += $width; } } $str = "\xC2\xA1Hola!"; // 7 bytes (6 characters in UTF-8) echo $str."\n"; hex_dump($str); echo"\n"; hex_dump(mb_convert_encoding($str, 'UTF-32', 'UTF-8')); echo"\n"; hex_dump(iconv('UTF-8', 'UTF-32', $str)); echo"\n"; hex_dump(mb_convert_encoding(mb_convert_encoding($str, 'UTF-32', 'UTF-8'), 'UTF-8', 'UTF-32'));
Output for git.master, git.master_jit, rfc.property-hooks
¡Hola! 0 : c2 a1 48 6f 6c 61 21 [..Hola!] 0 : 00 00 00 a1 00 00 00 48 00 00 00 6f 00 00 00 6c [.......H...o...l] 10 : 00 00 00 61 00 00 00 21 [...a...!] Warning: iconv(): Wrong encoding, conversion from "UTF-8" to "UTF-32" is not allowed in /in/rvYb1 on line 40 0 : c2 a1 48 6f 6c 61 21 [..Hola!]

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
44.79 ms | 402 KiB | 8 Q