<!DOCTYPE html>
<html>
<body>
<?php
$text = "\xE0";
echo utf8_encode($text) ."<br>";
echo utf8_decode($text);
?>
</body>
</html>