A vCard QR code turns your contact card into a single scannable square. When someone points a phone camera at it, the device decodes an embedded vCard and offers to save you straight into their address book — name, phone, email, company and website, with no typing and no typos. It is ideal for email signatures, conference badges, printed business cards and shop windows.
How it works
The tool assembles a standard vCard 3.0 text block from your inputs, then encodes that text into a QR code locally in your browser.
- It builds the vCard lines:
BEGIN:VCARD,VERSION:3.0, anN:structured name (last;first;;;), anFN:display name, then optionalORG,TITLE,TEL;TYPE=CELL,EMAILandURLlines for whichever fields you filled in, ending withEND:VCARD. - Each value is escaped per RFC 6350 — backslashes, commas, semicolons and newlines are prefixed with a backslash so they do not break the format.
- The finished text is rendered to a QR code at error-correction level M (about 15 percent recovery) and offered as PNG and SVG.
Example
For Ada Lovelace, Analytical Engines Ltd, phone +44 20 7946 0000, the generated payload is:
BEGIN:VCARD
VERSION:3.0
N:Lovelace;Ada;;;
FN:Ada Lovelace
ORG:Analytical Engines Ltd
TEL;TYPE=CELL:+44 20 7946 0000
END:VCARD
Scanning the resulting QR code opens a “Save contact” prompt pre-filled with all of those details.
| Field | vCard line |
|---|---|
| Name | N: and FN: |
| Organization | ORG: |
| Job title | TITLE: |
| Phone | TEL;TYPE=CELL: |
EMAIL: | |
| Website | URL: |
Everything runs in your browser — your contact details are never uploaded.