Run Code
|
API
|
Code Wall
|
Users
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Blog
Hex character codes
//Title of this code //Rextester.Program.Main is the entry point for your code. Don't change it. //Compiler version 4.0.30319.17929 for Microsoft (R) .NET Framework 4.5 using System; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; namespace Rextester { public class Program { public static void Main(string[] args) { string hexValues = "0d 0a a0"; string[] hexValuesSplit = hexValues.Split(' '); foreach (String hex in hexValuesSplit) { // Convert the number expressed in base-16 to an integer. int value = Convert.ToInt32(hex, 16); // Get the character corresponding to the integral value. string stringValue = Char.ConvertFromUtf32(value); char charValue = (char)value; Console.WriteLine("hexadecimal value = {0}, int value = {1}, char value = {2} or {3}", hex, value, stringValue, charValue); } } } }
run
|
edit
|
history
|
help
0
Please
log in
to post a comment.
C# program to Determine if Two Words Are Anagrams of Each Other
Reflekcja assembly, instancja i metoda
mysrc.tcl
edmond@DESKTOP-M2BC2LH
Delegate In C#
Main3-3
Demonstration await Control returned to the Caller
Program
problem
Code1
stackse - search stackoverflow differently
Please log in to post a comment.