ASCII =  number .digit .convert  (  Char  )  
                                
Description :

This instruction converts a char into its corresponding ASCII code.

Parameters :

  • Char to convert.

Return Value :

  • ASCII value of the char.

Notes :


%ascii_value = number.digit.convert (A) is equivalent to:

%ascii_value = asc (A)

Examples :