Get your own PHP server Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<body>
<p>A backslash followed by three integers will result in a octal value:</p>
<?php
$x = "\110\145\154\154\157";
echo $x;
?> 
</body>
</html>

A backslash followed by three integers will result in a octal value:

Hello