Jump to content
Xtreme .Net Talk

Recommended Posts

Posted

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

If you can't find it, Build It.

 

There is no place Like 127.0.0.1 also don't forget 1 + 1 = 10

Posted

found it

 

System.Convert.ToChar(System.Convert.ToUInt32(hexvalue, 16)).ToString

If you can't find it, Build It.

 

There is no place Like 127.0.0.1 also don't forget 1 + 1 = 10

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...