Click here to Skip to main content
15,741,981 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi ,,
i want to convert Character to the ASCII code with C#

how can i do this thing ?

tnx for useful helps !!
Posted

Just cast your char value to an int:
C#
char c = '0';
Console.WriteLine("ASCII code of '0' is " + ((int)c).ToString());
 
Share this answer
 
To get the ascii value of lower case x for example:

int i = (int)'x';
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900