HEX2ASCII The HEX2ASCII library routine converts a hexadecimal number to a string according to the ASCII table. Syntax: CALL "HEX2ASCII" USING asciiValue hexValue Parameters: hexValue PIC X(4) Specifies the hexadecimal number to be converted. asciiValue PIC X(2) Receives the converted ASCII string. Examples: Example - Convert HEX representation to Ascii value *> define ascii-value and hex-value as pic x(n) and *> hex-value should be double the lenght of ascii-value move "a1" to hex-value call "hex2ascii" using ascii-value, hex-value *> ascii-value will contain "i"