i am kinda new to php and i need to work with ASCII II characters those with code beyond 127.
The problem is that I am trying to run this script below, and I dont get my required characters from ASCII table that had to represent the ascii codes beyond 127.
Code: Select all
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>
</title>
</head>
<body>
<?php
for ($j = 128; $j<255; $j++){
echo (chr($j)) ." ";
}
?>
</body>
</html>
I need to manipulate in my php page ascii characters like theese.
« - 174
? - 218
? - 251
ü - 129
? - 183
? - 169
» - 175
? - 210
If anyone has an idea about how to solve this would be very appreciated.
Thank you very much.