ZeroEffect Posted April 20, 2009 Posted April 20, 2009 I know the I can use asc("A") to get the ascii value of "A" but what I need to do is get the ascii value of a hex value. a HEX value of "33" = ascii = "51" = character "3" when I try to use asc(hex value) I always get a return value of 51 so that is not it. I am I headed in the right direction? Thanks for any help. still hunting, ZeroEffect Quote If you can't find it, Build It. There is no place Like 127.0.0.1 also don't forget 1 + 1 = 10
ZeroEffect Posted April 20, 2009 Author Posted April 20, 2009 found it System.Convert.ToChar(System.Convert.ToUInt32(hexvalue, 16)).ToString Quote If you can't find it, Build It. There is no place Like 127.0.0.1 also don't forget 1 + 1 = 10
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.