x
 
<!DOCTYPE html>
<html>
<body>
<p>反斜杠后跟一个 'x' 和一个十六进制数表示一个十六进制值:</p>
<?php
$x = "\x48\x65\x6c\x6c\x6f";
echo $x;
?> 
</body>
</html>