A character can be stored in memory using its ASCII Code. ASCII means American System of Computer Information Interchange. Here is an ASCII Table of Printable Characters.
Actually, .NET uses the Unicode system for storing characters which includes the ASCII codes as a subset. For more information on Unicode, see this link: http://www.unicode.org.
must start with a letter or underscore character
must consist of letters, digits or underscores
Pascal style: NumberOfCustomers
Dim x, y, selectedIndex As Integer
Dim name As String
Dim flag As Boolean
Dim maxVal, massInKilos As Double
Dim a As String = "peach"
Dim flag As Boolean = True
Dim maxVal As Double = 35.875
Dim x = 2, y As Integer = 3
Dim x As Double= 2.35, y As Integer = 4