type TChrEnum = ( ce0 = ord('0'), ce1 = ord('1') ... );
var c1,c2 : char ... begin ... c1 := chr( integer(ce0) ); c2 := char( ce1 ); end;