Krill KitsKrill Kits// A swarm of small, sharp tools for letters, numbers, and units.
§ 01 / ARTICLE

The Wi-Fi QR Format. Nobody Told You About.

CATEGORY GENERATORSREAD 3 MINPUBLISHED APR 21, 2026

There's a standard QR format for Wi-Fi credentials. Every modern phone camera recognizes it. You encode SSID + password + security type, print or display the code, and guests join your network with one tap — no typing. Here's the exact format.

The format string

WIFI:T:WPA;S:MyNetwork;P:secret123;;

Fields:

  • T — security type. WPA covers WPA/WPA2/WPA3. WEP for old networks. nopass for open networks.
  • S — SSID (network name). Case-sensitive.
  • P — password. Case-sensitive. Omit for open networks.
  • H — optional; true if the network is hidden.

The trailing double semicolon ;; is required — it terminates the format and tells the parser you're done.

Escaping special characters

Because the format uses colons and semicolons as delimiters, they need escaping inside field values. Backslash before the character does it. So a password of p@ss;word becomes p@ss\;word in the QR. Commas and backslashes also need escaping with a backslash. Any decent QR generator handles this automatically — don't build the format string by hand if you're doing this programmatically.

Security considerations

The password is stored in plaintext inside the QR code. Anyone who can photograph the code — a nosy diner, a guest you don't fully trust — can extract your WPA password. Two practical guidelines:

  • Use Wi-Fi QR codes for a dedicated guest network, not your main one.
  • If you print the code for a conference or office, rotate the password periodically.

The user experience

On iOS 11+ and Android 10+, opening the camera and pointing at a Wi-Fi QR code shows a "Join this network" suggestion. Tap it, and you're on. No password field. No typos. The whole interaction is 2 seconds, which is exactly why this format is so useful for coffee shops, AirBnBs, and conference rooms.

// TRY THE TOOL
MAKE A WI-FI QR.

Pick Wi-Fi mode. Enter SSID + password + type. Out comes a scannable, printable QR.

OPEN →
§ 02 / FAQ

Questions. Answered.

What does the Wi-Fi QR format look like?+
WIFI:T:WPA;S:SSID;P:password;H:true;; — where T is security type (WPA, WPA2, WEP, or nopass), S is the SSID, P is the password, and H:true marks the network as hidden. The trailing double semicolon is required.
Which phones support it?+
iOS 11+, Android 10+, and most modern camera apps. Scanning the code prompts the user to join the network with one tap — no typing needed.
Is the password visible in the QR code?+
Yes — anyone who can scan or photograph the code can extract the password. Treat Wi-Fi QR codes like any printed password: guest networks only, or dispose of printouts carefully.
Do I need to escape special characters?+
Yes. Semicolons, colons, commas, and backslashes in the SSID or password need to be escaped with a backslash. Most QR generators (including ours) handle this automatically.
§ 03 / TOOLS

Related calculators.

§ 04 / READING

Keep reading.