I\'m able to convert a character to its corresponding character/ASCII code using \"Asc(CHAR)\". What can I use to convert this returned integer back to its original characte
Use the Chr or ChrW function, Chr(charNumber).
Chr(charNumber)