Convert Character To Ascii Code Script

ASCII ( American Standard Code for Information Interchange ) is used to text in computers, communications equipment, and other devices communication.

Convert Character To Ascii Code Script is used to get the ASCII code for a character.you can try this demo here.

Demo :



Type Character :  

Example :

Example 1:   A
Example 2:   /
Example 3:   z

if you need to convert character to ASCII code function take and use to your website.


  $char = "A";
  $asc = ord($char);
  echo $asc;

In the above code is used to convert character to ASCII code.In the ord() function one parameter have use that name is string character.

<form id="convert_ascii" name="convert_ascii" method="post" action="">
 <input type="text" id="character" name="character">
 <input type="submit" value="Convert"/>
</form>

In the above form is used to Convert Character To Ascii Code Script.when click in the Convert button form will pass the string through POST method and ord() function get which string and convert ASCII code.

Free Download Script :

If you need Convert Character To Ascii Code Script click and download from following link.

Download




Content