A MAC address (Media Access Control address) is the 48-bit hardware identifier burned into every network interface — your laptop’s Wi-Fi card, a phone, a router, a virtual machine. This lookup tool decodes any EUI-48 MAC address, telling you the manufacturer (when known), whether the frame is unicast or multicast, and whether the address is a real factory OUI or a randomised privacy address. It is useful for network admins identifying devices on a LAN, troubleshooting DHCP leases, or just sanity-checking why a phone shows an “unknown” vendor.
How it works
The address is normalised by stripping every non-hex character and upper-casing it,
so colon (3C:5A:B4:00:11:22), dash, dot and plain 12-digit formats all work. The
result must be exactly 12 hex digits (48 bits) split into six octets.
- OUI — the first 3 octets form the Organisationally Unique Identifier. This is matched against a built-in vendor list; an OUI not in the list is reported as such rather than guessed.
- I/G bit — bit 0 (least-significant) of the first octet.
0= unicast,1= multicast (group address). - U/L bit — bit 1 of the first octet.
0= universally administered (a real vendor OUI),1= locally administered (randomised or virtual).
Example
Take 3C:5A:B4:00:11:22. The first octet 3C is 0011 1100 in binary — bit 0 is
0 (unicast) and bit 1 is 0 (universally administered). The OUI 3C5AB4 maps to
Google in the built-in list. So the result is: unicast, real vendor, Google.
By contrast 02:1A:2B:3C:4D:5E starts with 02 (0000 0010) — bit 1 is set, so it
is locally administered: a randomised privacy MAC with no real manufacturer.
| First octet bit | Name | 0 means | 1 means |
|---|---|---|---|
| bit 0 | I/G | Unicast | Multicast |
| bit 1 | U/L | Universal (real OUI) | Locally administered |
Everything is computed in your browser — no lookup request is made, so the address is never sent anywhere. For a manufacturer not in the local list, consult the official IEEE OUI registry.