In Jade characters are stored in integers. Their read syntax is a question mark followed by the character itself which may be an escape sequence introduced by a backslash. For details of the available escape sequences see section Strings.
?a
=> 97
?\n
=> 10
?\177
=> 127
t when character is one of the
alphabetic characters.
(alpha-char-p ?a)
=> t
t.
t when character is lower-case.
t when character is one of the decimal
digit characters.
t when character is either an alphabetic
character or a decimal digit character.
t when character is a white-space character (space, tab,
newline or form feed).
(char-upcase ?a)
=> 65 ;`A'
(char-upcase ?A)
=> 65 ;`A'
(char-upcase ?!)
=> 33 ;`!'
Go to the first, previous, next, last section, table of contents.