siddscool19 Posted October 18, 2008 Share Posted October 18, 2008 Can anyone please tell me the value of these ascii characters I searched at lots of places but couldn't find it... So if anyone knows them it would be grateful %90 %91 %92 %93 %94 %95 %96 %97 %98 %99 All are in HEX Quote Link to comment https://forums.phpfreaks.com/topic/128957-value-of-few-ascii-characters-need-urgently/ Share on other sites More sharing options...
wildteen88 Posted October 18, 2008 Share Posted October 18, 2008 You can found what those represent by running the following script: for($i = 90; $i < 100; $i++) { echo "%$i = " . urldecode("%$i").'<br />'; } Outputs %90 = %91 = ‘ %92 = ’ %93 = “ %94 = ” %95 = • %96 = – %97 = — %98 = ˜ %99 = ™ Quote Link to comment https://forums.phpfreaks.com/topic/128957-value-of-few-ascii-characters-need-urgently/#findComment-668579 Share on other sites More sharing options...
siddscool19 Posted October 18, 2008 Author Share Posted October 18, 2008 Why is it not showing value for %90? And also when I run the code on my PC it was showing ? for all values... Why? Quote Link to comment https://forums.phpfreaks.com/topic/128957-value-of-few-ascii-characters-need-urgently/#findComment-668583 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.