Or this might be one option and you can make it easily scalable beyond 8 bit input string...
Code:
Hex_input       var byte
ASCII_Array     VAR BYTE [8]
i               var byte

for i = 0 to 7
    DEBUGIN [HEX1 Hex_input]
    ASCII_Dec_Array[i] = Hex_input
next i