For example the unicode number for 'A' is 65, and the one for 'B' is 98.
Thus a, c, e, g, etc have odd unicode numbers and b, d, f, h, etc have even unicode numbers.
How would I go about checking whether a char is odd or even?
Keep in mind I'm not an advanced programmer.