3v4l.org

run code in 300+ PHP versions simultaneously
<?php // Canonical. $latin_A_with_ring_above = "\xc3\x85"; // Not Canonical. $Angstrom = "\xE2\x84\xAB"; var_dump( $latin_A_with_ring_above, $Angstrom, normalizer_is_normalized($latin_A_with_ring_above), normalizer_is_normalized($Angstrom), bin2hex($latin_A_with_ring_above), bin2hex($Angstrom), bin2hex(normalizer_normalize($latin_A_with_ring_above)), bin2hex(normalizer_normalize($Angstrom)) );
Output for git.master, git.master_jit, rfc.property-hooks
string(2) "Å" string(3) "Å" bool(true) bool(false) string(4) "c385" string(6) "e284ab" string(4) "c385" string(4) "c385"

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:
51.69 ms | 401 KiB | 8 Q