PHP ord() Function Last Updated : 11 Jul, 2025 Comments Improve Suggest changes 1 Likes Like Report The ord() function is a inbuilt function in PHP that returns the ASCII value of the first character of a string. This function takes a character string as a parameter and returns the ASCII value of the first character of this string. Syntax: int ord($string) Parameter: This function accepts a single parameter $string. This is a mandatory parameter from which we get an ASCII value. Return value: This function returns an integer value which represents the ASCII value of the first character in the string passed to this function as a parameter. Examples: Input : Geeksforgeeks Output : 71 Explanation: The ASCII value of G is 71 Input : twinkle Output : 116 Explanation: The ASCII value of t is 116 Below programs illustrate the ord() function in PHP: Program 1: PHP <?php // PHP program to illustrate the ord() function // ASCII value of 't' is printed. echo ord("twinkle"); ?> Output: 116 Program 2: php <?php // PHP program to illustrate the ord() function // ASCII value of 'G' is printed echo ord("Geeksforgeeks"); ?> Output: 71 Reference: https://www.php.net/manual/en/function.ord.php Create Quiz Comment T Twinkl Bajaj Follow 1 Improve T Twinkl Bajaj Follow 1 Improve Article Tags : Misc Web Technologies PHP PHP-string Explore BasicsPHP Syntax4 min readPHP Variables5 min readPHP | Functions6 min readPHP Loops4 min readArrayPHP Arrays5 min readPHP Associative Arrays4 min readMultidimensional arrays in PHP5 min readSorting Arrays in PHP4 min readOOPs & InterfacesPHP Classes2 min readPHP | Constructors and Destructors5 min readPHP Access Modifiers4 min readMultiple Inheritance in PHP4 min readMySQL DatabasePHP | MySQL Database Introduction4 min readPHP Database connection2 min readPHP | MySQL ( Creating Database )3 min readPHP | MySQL ( Creating Table )3 min readPHP AdvancePHP Superglobals6 min readPHP | Regular Expressions12 min readPHP Form Handling4 min readPHP File Handling4 min readPHP | Uploading File3 min readPHP Cookies9 min readPHP | Sessions7 min read Like