Calculate Ascii Value

  • Thread starter Thread starter Microsoft News
  • Start date Start date
* "Microsoft News said:
Hoe to calculate ASCII value of a character

\\\
MsgBox(Convert.ToInt32("A"c))
MsgBox(AscW("A"))
MsgBox(System.Text.Encoding.Unicode.GetBytes("A")(0))
///
 
Back
Top