ASCII value -> charactar

I believe you can get between the two values by simply casting the objects.
C#:
int myAsciiValue = 97;
char myChar = (char)myAsciiValue;

myChar = 'a';
myAsciiValue = (int)myChar;
 
Back
Top