how to get the askii code of a char in csharp

Code Example - how to get the askii code of a char in csharp

                
                        int unicode = 65;
char character = (char) unicode;
// character will have an "A" in it.