The vCard Builder turns a contact form into a standards-compliant .vcf file and a
scannable QR code in one place. A vCard (the .vcf format) is the universal electronic
business card: it imports into the Contacts app on iPhone, Android, macOS and Windows, and into
Google Contacts, Outlook and most CRMs. This tool is for anyone who needs to hand someone a clean,
complete contact — a freelancer sharing details at an event, a small team standardising email
signatures, or anyone migrating contacts between phones without a cloud account in the middle.
Unlike a quick single-field QR generator, this builder supports the parts of a real contact that
people actually use: multiple phone numbers and emails (each tagged WORK, HOME, CELL or FAX),
a full postal address, a website, a birthday, a note, and an embedded photo.
It also keeps a small address book in your browser so you can save contacts, reload them later,
and export everyone to a single .vcf when it is time to move to a new device. Everything runs
client-side — nothing about your contacts ever leaves the browser.
How it works
The tool serialises your inputs into vCard 3.0 (RFC 2426), the version with the broadest device
support. Each field becomes a typed property line: N and FN for the name, TEL;TYPE=CELL for a
mobile number, EMAIL;TYPE=WORK for a work address, ADR for the structured postal address, BDAY
for the birthday and PHOTO;ENCODING=b for an embedded image. Values are escaped per the spec
(commas, semicolons, backslashes and newlines), and long lines are folded at 75 octets so strict
parsers accept the file. The same data is rendered live as a QR code using error-correction level M
(dropping to L automatically when the payload grows), with the photo excluded so a phone camera can
still read it. You can download the .vcf, the QR as PNG or SVG, or peek at the raw vCard text before
sharing.
Example
Suppose you are a designer with a mobile and a studio line. Enter your name, set the organisation and
title, add a CELL phone and a WORK phone, two emails, your portfolio URL and your studio address.
Click Download .vcf and you get a file like this (abbreviated):
BEGIN:VCARD … N:Lovelace;Ada;;; … TEL;TYPE=CELL:+44 20 7946 0958 …
EMAIL;TYPE=WORK:[email protected] … END:VCARD
Save the contact to the address book, repeat for two colleagues, then click Export book to get a
single .vcf containing all three — ready to import into a new phone in one go. The QR beside the form
updates as you type, so you can also just hold it up and let someone scan it straight into their phone.
Every field is processed in your browser; no contact details are uploaded or stored on a server.