I’ve googled this but possibly typing in the wrong thing.
I see hexadecimal numbers knocking about such as 3A and 0x3A, but what does the leading 0x mean? I read somewhere it means the number is signed, but converting a negative decimal to hex in calc doesn’t produce a hexadecimal number with the leading 0x.
Any points much appreicated.
It’s just a convention, used in C and C-like languages, to distinguish between different bases, e.g.
0x10(hex) versus10(decimal) versus010(octal) versus0b10(binary).