Is chr(0x20) the same as chr(20)? or is there a difference somewhere?
Printable View
Is chr(0x20) the same as chr(20)? or is there a difference somewhere?
nope, chr(0x20) is the same as chr(32) , because 0x20 would be a long value rather than an integer
if you have vb you can prove this by Console.WriteLine(0x20); , you will see 32 gets printed out.
Of course you wouldn't see anything becuase ASCII 32 is the breaking / condensing space character generated when you hit the space bar. ;)