Gerador de Código QR Wi-Fi

O Gerador de Código QR Wi-Fi cria um QR scaneável que conecta telefones automaticamente à tua rede Wi-Fi quando um convidado aponta a câmara. Sem mais ditar passwords longas ou pedir desculpa pelos caracteres especiais. O QR codifica o SSID, password, tipo de encriptação e flag de rede oculta no formato padrão 'WIFI:T:WPA;S:Net;P:pwd;H:false;;' que iOS, Android e a maioria das apps de câmara reconhecem nativamente.

Built by Bob Article by Lace QA by Ben Shipped

Como usar

  1. 1

    Escreve o nome da rede (SSID) exatamente como é transmitido.

  2. 2

    Escolhe o tipo de encriptação. WPA / WPA2 / WPA3 cobrem praticamente todas as redes domésticas.

  3. 3

    Escreve a password. Atenção a maiúsculas e caracteres especiais.

  4. 4

    Marca 'Rede oculta' apenas se o teu SSID estiver configurado para não transmitir.

  5. 5

    O QR aparece enquanto escreves. Toca em Descarregar PNG para guardar.

Perguntas frequentes

Ratings & Reviews

Rate this tool

Sign in to rate and review this tool.

Loading reviews…

Why Wi-Fi QR Codes Exist

Imagine the last time someone asked for your Wi-Fi password. You either dictated it character-by-character (with the apologies for the dollar sign and the special accent), wrote it on a sticky note that's now stuck to your fridge forever, or texted it to them — which means it's now in their messages app, your messages app, and probably also in iCloud.

The Wi-Fi QR Code is the alternative. You generate one image that encodes the network name, password, and encryption type. Print it, frame it, stick it on the wall. Guests scan it with their camera. They're online. No typing, no dictating, no sticky notes. iOS and Android both recognize the format natively — there's no app to install.

How the Microapp Wi-Fi QR Generator Works

Type your network name (the SSID — exactly as it broadcasts, including case). Pick the encryption type — WPA / WPA2 / WPA3 cover essentially every home and modern enterprise network; WEP is for ancient routers (avoid); "None" is for open networks. Type the password. Optionally tick "Hidden network" if your SSID isn't broadcast. The QR appears as you type. Download as PNG to print, or copy the underlying URI for embedding in code.

Generation runs entirely in your browser using the qrcode library. The image is computed from the WIFI URI string locally; nothing is uploaded, logged, or stored. The PNG you download exists only on your machine until you put it somewhere.

Worked example. Network name HomeWifi, password tr3eHouse!, WPA encryption. The encoded payload is WIFI:T:WPA;S:HomeWifi;P:tr3eHouse!;H:false;;. The QR encodes that string; phones recognize it as a Wi-Fi join request and prompt the user.

How Phones Actually Use It

iOS (11+): open the camera app, point at the QR. A "Join Network" notification banner slides down. Tap to connect. Done.

Android (9+): open the camera app or Google Lens, point at the QR. Same prompt. Same one-tap connect. Older Androids (pre-9) need a separate QR scanner app — most camera apps now support QR natively.

Some phones also have a dedicated "Wi-Fi QR" feature in the Wi-Fi settings (Samsung, OnePlus, others) — same outcome, different entry point.

What's Encoded in the QR

A short URI in the WIFI format that the IEEE never standardized but the entire mobile industry agreed on:

WIFI:T:<auth>;S:<ssid>;P:<password>;H:<hidden>;;

T is the auth type: WPA, WEP, or nopass. WPA covers WPA / WPA2 / WPA3 — phones connect using whatever the router negotiates. S is the SSID. P is the password (omitted for nopass networks). H is true or false for hidden network.

Special characters in the SSID or password get backslash-escaped: \, ;, ,, ", and :. Phones unescape during the join, so the password they actually try is exactly what you typed. The escaping is invisible to the user.

What This Doesn't Cover

Enterprise auth (Eduroam, RADIUS-backed networks). The WIFI URI format only handles consumer-grade WPA personal networks. Enterprise auth needs a provisioning profile (iOS) or a configuration app — a QR can't carry the certificates and EAP settings. If your network requires a username plus password (not just a password), this isn't the right tool.

Captive portals. Networks that connect you with WPA-PSK but then require a separate browser-based login (hotel Wi-Fi, conference Wi-Fi) — the QR connects you to the network, but you still have to open a browser and authenticate.

Custom DNS or proxy settings. The QR carries network credentials only. Anything beyond the basic join (per-network DNS, proxies) needs the OS network settings UI.

Common Use Cases

Guest Wi-Fi at home. Generate the QR for your guest network (not your main one), print it, frame it, hang in the entryway. Visitors scan and join in 5 seconds.

Café and restaurant Wi-Fi. Replace the "WiFi: Cafe2024 / Password: latte" sign with a QR. Looks more modern, prevents typos, and customers don't have to walk around looking for the printout.

Conference and event Wi-Fi. Print on the badge, the program, the signage. Saves the IT desk from password-relay duty.

AirBnB and short-term rentals. Stick the QR in the welcome book. Every guest can connect in under a minute.

Privacy Considerations

The QR contains the password in plain text — anyone who scans it gets your network credentials. If you don't want the password public, don't print the QR in a public place. For guest networks this is fine (the whole point is anyone can join); for your main network, treat the QR like the password itself.

Routers that support guest networks (most modern ones do) let you create a separate Wi-Fi for visitors — the QR for the guest network can be public; your main network stays private. This is the recommended setup.

Related Tools

For decoding any QR code (including ones you've found on a poster), use the QR Code Reader — they form a complete encode/decode pair. To generate strong Wi-Fi passwords in the first place, see the Password Generator. For other random tokens (API keys, session IDs), the Token Maker is the right choice. To shorten a long URL to fit nicely in a QR (smaller QR = easier to scan), pair this with any URL shortener.