| ConstantsConstants are fixed values. Here are a few examples of valid constants. 
 String constants can contain special escape sequences to create unique characters. A caret (^) initiates an escape sequence. Here is a list of the escape sequences that are supported. 
 You can also specify characters by specifying the ASCII value of the character using either of the following two formats. "^xNN"     Specifies an ASCII character where NN are two hexadecimal (base 16) digits.  "^NNN"     Specifies an ASCII character where NNN are three octal (base 8) digits. |