You are here: Building Expressions > Character Strings > Character Constants

Character Constants

You can use a character constant in your expressions to specify a character string that never changes.

To create a character constant, surround the character with matching double or single quotes. If your string needs to contain a single or double quote, surround the string with the other quote. Some examples of valid character constants are:

"ABC"

'ABC'

"A'B'C"

'A"B"C'