Tested tool guide
Tested browser tools
Checked August 16, 2026
What Network Mask Converter does, with a checked example
Network Mask Converter expresses one IPv4 subnet mask in four equivalent forms: dotted decimal octets, a CIDR prefix length, an inverse wildcard mask, and 32 binary bits. For a valid mask, the CIDR number equals the uninterrupted run of 1 bits from the left. The most common mistake is treating the wildcard as another spelling of the subnet mask. It is the bitwise complement, so every 1 becomes 0 and every 0 becomes 1.
Worked example
A concrete input and expected output from the current implementation.
->
Expected output
Dotted decimal: 255.255.255.192
CIDR: /26
Wildcard mask: 0.0.0.63
Binary: 11111111.11111111.11111111.11000000
The binary mask contains 26 leading 1 bits, so its CIDR form is /26. Inverting every bit produces 00000000.00000000.00000000.00111111, which is 0.0.0.63 in dotted decimal.