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().
ord(c)