Skip to content
K

Common QR Code Examples

This page describes the types of content you can encode within QR codes.

Open a local file or directory when scanned. Note that this must be scanned on a device with access to the local file system.

  • File URL: The file URL to open in a web browser when the QR code is scanned
file:///{File URL}
file:///file/path/to/doc1.doc

Pre-populate an SMS message to the specified number.

  • Phone number: Phone number to send the message to
  • Subject: Message body to send in the SMS
sms:{phoneNumber}?body={subject}
sms:0491570006?body=Meet%20at%20the%20local%20cafe%20at%2010am%3F

Open a URL when the QR code is scanned.

  • URL: The URL to open in a web browser when the QR code is scanned
https://{url} or http://{url}
https://littleappy.co or http://littleappy.co

Open WhatsApp with a pre-populated message.

  • Phone number: Phone number to send the message to (must only contain numbers)
  • Message: URL-encoded message to pre-populate
https://wa.me/{phoneNumber}?text={message}
https://wa.me/0491570006?text=Meet%20at%20the%20local%20cafe%20at%2010am%3F

Connect to a Wi-Fi network by scanning a QR code.

  • SSID: Name of the Wi-Fi network
  • Password: Password to connect to the network
  • Authentication mode: Must be one of WEP, WPA, WPA2 or nopass
  • isHiddenSSID: Set to H:true if network is hidden
WIFI:T:{authMode};S:{ssid};P:{password};H:{isHiddenSSID};
WIFI:T:WPA;S:MyNetwork;P:MyPassword123;H:false;