Skip to content

Instantly share code, notes, and snippets.

@Dynyx
Created June 4, 2012 13:15
Show Gist options
  • Save Dynyx/2868299 to your computer and use it in GitHub Desktop.
Save Dynyx/2868299 to your computer and use it in GitHub Desktop.
String to hex / Hex to string
public string ConvertStringToHex(string asciiString)
{
string hex = "";
foreach (char c in asciiString)
{
int tmp = c;
hex += String.Format("{0:x2}", (uint)System.Convert.ToUInt32(tmp.ToString()));
}
return hex;
}
public string ConvertHexToString(string HexValue)
{
string StrValue = "";
while (HexValue.Length > 0)
{
StrValue += System.Convert.ToChar(System.Convert.ToUInt32(HexValue.Substring(0, 2), 16)).ToString();
HexValue = HexValue.Substring(2, HexValue.Length - 2);
}
return StrValue;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment