chr is:exact

The toEnum method restricted to the type Char.
(chr) Translate the given integer to a character. (Note the result will depend on the character set of your database.)
Conversion from an integer to a character.
>>> prove $ \x -> 0 .<= x .&& x .< 256 .=> ord (chr x) .== x
Q.E.D.

>>> prove $ \x -> chr (ord x) .== x
Q.E.D.
Corresponds to the chr function.