Create a function that returns the ASCII value of the passed in character.
CharToASCII('S') ➞ 83 CharToASCII('m') ➞ 109 CharToASCII('1') ➞ 49 CharToASCII('a') ➞ 97
return