Use the Chr() and Asc() functions to convert between the numerical and string representations of VBA's character code set
Sub chrDemo() MsgBox Chr(65) End Sub