int to ascii

How to convert a int to ascii char Example: int = 65, char = 'A' in ascii table.


Answer this question

int to ascii

  • XBTester

    You can always cast an int to a char:

    int n = 65;

    char c = (char) n;

    HTH
    --mc


  • Swamy Kanakala

    int a = 65;

    char converted = Convert.ToChar(a);

    I hope it will work! Cheers ;-)



  • int to ascii