I've got an array of special characters that looks something like this.
specialCharList=['`','~','!','@','#','$','%','^',
             '&','*','(',')','-','_','+','=',
             '|','','{','}','[',']',';',':',
             '"',',','.','<','>','/','?']
The problem is, I want to include the ' and the \ characters but can't because they're used for strings and escaping. How would I go about including these characters?