MAC Address Format Converter

Network Client-side mac mac address converter format colon hyphen cisco ethernet

This tool runs entirely client-side, in your browser: your data is never sent anywhere.

What it does

Converts a MAC (hardware/Ethernet) address between the four most common notations:

Paste a MAC address in any of these formats (upper or lower case, with or without separators) and instantly get all four representations, ready to copy.

Try it

How it works

  1. Your input is stripped of every non-hexadecimal character (:, -, ., spaces...), leaving just the 12 raw hex digits.
  2. That input is validated: it must contain exactly 12 hexadecimal characters (0-9, A-F). Anything else (too short, too long, invalid characters) shows an error instead of a wrong/partial result.
  3. The 12 hex digits are then re-assembled into each of the four target formats:
FormatPatternExample
ColonXX:XX:XX:XX:XX:XXAA:BB:CC:DD:EE:FF
HyphenXX-XX-XX-XX-XX-XXAA-BB-CC-DD-EE-FF
Cisco dottedXXXX.XXXX.XXXXAABB.CCDD.EEFF
RawXXXXXXXXXXXXAABBCCDDEEFF

Notes