Hi Marvell,
1.1000014.3 represents tagged and 2.1000014.3 represents untagged ports on a VLAN respectively. In this case, the hex string goes 80 00 00 00 and so on.
Here, "8" in binary form is represented by "1000". These are the first four ports (# 1, 2, 3 and 4). The number "1" in binary here for all intents are purposes is counted as "present" and "0" as not present. So, the VLAN 1000014 (ISC) is "present" as tagged on port 1 (but not on 2, 3 and 4 as they are shown as zeroes).
To elaborate further, assuming you have a hex string 3F 08 and so on, in binary it will be 3(0011), F(1111), 0(0000), 8(1000), etc.. This means the ports that are tagged on the VLAN are 3, 4, 5, 6, 11. I hope this makes sense.