ord

ord(c)

Returns the ordinal value of a character (built-in).

c(Optional) The error number of the text you want to return (Integer).

REMARKS
* No prefix required - Core
* Given a string representing one Unicode character, return an integer representing the Unicode code point of that character. For example, ord('a') returns the integer 97 and ord('€') (Euro sign) returns 8364. This is the inverse of chr().
* You can use the chr function to
* For the Official documentation refer to python.org

?? 

© 2026 Better Solutions Limited. All Rights Reserved. © 2026 Better Solutions Limited Top