ASCII VREDNOSTI PHP

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>Document</title>
</head>
<body>
<?php  

    for ($i=0; $i < 255; $i++) { 
        echo utf8_encode( chr($i) );
    }

?>

</body>
</html>
Evil Eel