can emit messages like this:

    1. Syntax error. Unexpected character: a

    but also like the following:

    1. Syntax error. Unexpected character: Space

    With the at-sign modifier, ~@C will emit the character in Lisp’s literal character syntax.

    1. CL-USER> (format t "~@c~%" #\a)
    2. NIL

    With both the colon and at-sign modifiers, the ~C directive can print extra information about how to enter the character at the keyboard if it requires special key combinations. For instance, on the Macintosh, in certain applications you can enter a null character (character code 0 in ASCII or in any ASCII superset such as ISO-8859-1 or Unicode) by pressing the Control key and typing @. In OpenMCL, if you print the null character with the ~:C directive, it tells you this:

    Format directives dedicated to emitting numbers are another important category. While you can use the ~A and ~S directives to emit numbers, if you want fine control over how they’re printed, you need to use one of the number-specific directives. The numeric directives can be divided into two subcategories: directives for formatting integer values and directives for formatting floating-point values.

    Five closely related directives format integer values: ~D, ~X, ~O, ~B, and ~R. The most frequently used is the ~D directive, which outputs integers in base 10.

    1. (format nil "~d" 1000000) ==> "1000000"

    As I mentioned previously, with a colon modifier it adds commas.

    1. (format nil "~:d" 1000000) ==> "1,000,000"

    And with an at-sign modifier, it always prints a sign.

      The first prefix parameter can specify a minimum width for the output, and the second parameter can specify a padding character to use. The default padding character is space, and padding is always inserted before the number itself.

      1. (format nil "~12d" 1000000) ==> " 1000000"
      2. (format nil "~12,'0d" 1000000) ==> "000001000000"

      These parameters are handy for formatting things such as dates in a fixed-width format.

      The third and fourth parameters are used in conjunction with the colon modifier: the third parameter specifies the character to use as the separator between groups and digits, and the fourth parameter specifies the number of digits per group. These parameters default to a comma and the number 3. Thus, you can use the directive ~:D without parameters to output large integers in standard format for the United States but can change the comma to a period and the grouping from 3 to 4 with ~,,'.,4D.

      1. (format nil "~,,'.,4:d" 100000000) ==> "1.0000.0000"

      Note that you must use commas to hold the places of the unspecified width and padding character parameters, allowing them to keep their default values.

      Finally, the ~R directive is the general radix directive. Its first parameter is a number between 2 and 36 (inclusive) that indicates what base to use. The remaining parameters are the same as the four parameters accepted by the ~D, ~X, ~O, and ~B directives, and the colon and at-sign modifiers modify its behavior in the same way. The ~R directive also has some special behavior when used with no prefix parameters, which I’ll discuss in the section “English-Language Directives.”