character -- r7rs Type
§

Sub-types tree
§

Super-types
§

Sub-types
§

Sub-types recursive
§

Referent definitions as input
§

Referent definitions as output
§

Predicate
§

char?

Description
§

Characters are objects that represent printed characters such as letters and digits. All Scheme implementations must support at least the ASCII character repertoire: that is, Unicode characters U+0000 through U+007F. Implementations may support any other Unicode characters they see fit, and may also support non-Unicode characters as well. Except as otherwise specified, the result of applying any of the following procedures to a non-Unicode character is implementation-dependent.

Characters are written using the notation #\<character> or #\<character name> or #\x<hex scalar value>.

The following character names must be supported by all implementations with the given values. Implementations may add other names provided they cannot be interpreted as hex scalar values preceded by x.

Here are some additional examples:

Case is significant in #\<character>, and in #\<character name>, but not in #\x<hex scalar value>. If <character> in #\<character> is alphabetic, then any character immediately following <character> cannot be one that can appear in an identifier. This rule resolves the ambiguous case where, for example, the sequence of characters #\space could be taken to be either a representation of the space character or a representation of the character #\s followed by a representation of the symbol pace.

Characters written in the #\ notation are self-evaluating. That is, they do not have to be quoted in programs.

Some of the procedures that operate on characters ignore the difference between upper case and lower case. The procedures that ignore case have -ci (for case insensitive) embedded in their names.


The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.

Categories
§

Categories recursive
§