computing
  • 0

Solved 7A:CA:E:1E:7C:80 In Mac Address What The Single E Means

  • 0

i have the mac address this in arduino uno
7A:CA:E:1E:7C:80 what the single E means…???
i want know why they put single digit rather than the normal format. is there any reason behind this?
i am very new learner on this kind of things please help?

Share

1 Answer

  1. MAC address consist of 6 octets or bytes (8 bits).
    Each octet has a range from 0 to 255 (Dec) or 0 to FF (hex) .

    The representation for decimal value 14 in this case is E but could be 0E to conform to the format of 2 digits per octet.

    • 0