A business card people can scan into their phone
This generator turns your contact details into a vCard QR code — the same format phones recognise as a contact. One scan offers to save your name, company, title, phone, email, website and address straight into the address book, with no typing.
How it works
As you type, the tool assembles a vCard 3.0 text record. It always includes
the structured name (N) and formatted name (FN), and adds ORG, TITLE,
TEL, EMAIL, URL and ADR lines for any fields you fill in. Special
characters (commas, semicolons, backslashes, newlines) are escaped so the card
parses correctly. That vCard text is then rendered live into a QR code you can
download as SVG or PNG.
Example
Entering name Ada Lovelace, company Analytical Engines, title Founder produces a vCard like:
BEGIN:VCARD
VERSION:3.0
N:Lovelace;Ada;;;
FN:Ada Lovelace
ORG:Analytical Engines
TITLE:Founder
END:VCARD
| Field | vCard line |
|---|---|
| Phone | TEL;TYPE=WORK,VOICE: |
EMAIL;TYPE=WORK: | |
| Website | URL: |
| Address | ADR;TYPE=WORK: |
Print the SVG on your physical card or add it to an email signature. Everything is built locally in your browser, so your details are never uploaded.
Practical tips for printing
Choose the right format for your use case. SVG is a vector file that prints crisply at any size — from a 9mm × 9mm square on a standard business card to a blown-up poster. PNG is a pixel image, so set it to at least 300 DPI (typically 600 × 600 px or higher) if you are sending it to a print shop.
Leave a quiet zone. QR scanners need a margin of at least four modules (cells) of white space around the code. Most printers shrink the design slightly, so generate the code at a slightly larger size than you think you need, then scale it down. The white border should be visible and intact on the printed card.
Test before printing a batch. Scan the code on your phone camera (no extra app needed on most modern Android and iOS devices) before sending the file to a printer. Check that every field — especially the phone number country code and email address — appears correctly in the contact preview. A typo caught before a 500-card print run saves both money and embarrassment.
Keep the design simple around the code. A QR code placed on a busy pattern or a very dark background reduces scan reliability. If the card has a dark colour scheme, print the code on a white or light-coloured inset panel. Some designers frame the code with a subtle line or label it “Scan to connect” so recipients know what to do.
Why vCard 3.0 rather than a link
Some QR codes on business cards point to a website rather than a contact record. The advantage of the vCard approach is that it works entirely offline — there is no link to break, no server to go down, and no privacy intermediary between you and the person scanning. The contact details land directly on the recipient’s phone. If your number or email changes, generate a new code and reprint; the old cards retain your previous details rather than silently redirecting anywhere.