In Parser, we can use any characters. The following characters have special meaning: ^ $ ; @
( ) [ ] { } " : #
To cancel special meaning of these characters you must precede them with character ^. For example, to get $ in the output, you will need to use ^$ in the code.
Besides, you can use character codes: ^#20 - equals to space character
^#XX - XX hex code of the character