Character

The type to use for a char that might be null is Character.

void main() {
Character c = null;
IO.println(c);
c = '%';
IO.println(c);
}