I need to get the ascii code of a given string. Say the string is 'a', i need to the ascii code for it?
How do i do it?
Regards Julian Chamberlain
ord("string") return the ascii value of the first character for a given string.