2.5. Character Literals

[PREVIOUS][UP][NEXT]

A character literal is formed by enclosing one of the 95 graphic characters (including the space) between two apostrophe characters. A character literal has a value that belongs to a character type.

    character_literal ::= 'graphic_character' 

Examples:

    'A'   '*'   '''   ' ' 

References: character type, graphic character, literal, space character.


[INDEX][CONTENTS]