Returns the ordinal value of the specified character.
function ibec_Ord(Chr : char): integer;
The ibec_Ord function returns the ordinal value of the specified character. If Chr is an empty string or NULL, then result is 0.
execute IBEBlock returns (val integer) as begin val= ibec_Ord('A'); suspend; end