convertions

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • pullarao
    New Member
    • Dec 2007
    • 1

    convertions

    how to convert ascii code to character in asp.net using c#.net
  • mzmishra
    Recognized Expert Contributor
    • Aug 2007
    • 390

    #2
    use System.Text.ASC IIEncoding class

    Comment

    • Plater
      Recognized Expert Expert
      • Apr 2007
      • 7872

      #3
      You can type-cast single character codes, if you only want a single one.
      Code:
      char mychar=(char)0x64;

      Comment

      Working...