$hexValue = "11503B58";
I want to get output:
Seed0 = 0x11
Seed1 = 0x50
Seed2 = 0x3B
Seed3 = 0x58
Seed0 ~ Seed3 should be also Hex value (not string).
$hexValue = "11503B58";
I want to get output:
Seed0 = 0x11
Seed1 = 0x50
Seed2 = 0x3B
Seed3 = 0x58
Seed0 ~ Seed3 should be also Hex value (not string).
2
Answers
Output:
A simple quick and dirty way is converting it to a string and then split it.
You can convert a hex value into hex representation string.
The internal representation is always decimal.