Why do I have to enclose A, Z, 0, and 9 within single quotes?
The single quotes denote a char constant.

Example
Code:
char ch = 'A';
Jim