Drop your details into a phone, camera only
Handing over a contact card by scan needs no app on an iPhone: the Camera app reads the vCard from iOS 11 onward and opens a contact preview with an 'Add Contact' button. Android is more uneven — Google Lens recognises the format and offers to save it, so most people are covered, but a few third-party scanners show only raw text.
That split is the thing to plan around. A link opens the same everywhere, but a contact card is a structured payload the reader must interpret, so the result depends on which scanner the other person uses. Knowing where it works cleanly lets you keep the code lean.
Where a contact card saves with no app
On iPhone the stock Camera does the whole job from iOS 11: it surfaces the parsed contact and one tap files it in the address book. This is the smoothest path and needs nothing installed.
On Android the safe route is Google Lens, which reads the vCard format and shows an 'Add to contacts' action. It ships on or is trivially available for almost every device, so 'no app' holds in practice — but a random legacy scanner may just dump the raw VCARD text.
- iPhone iOS 11+: Camera shows a contact preview.
- Android: Google Lens offers 'Add to contacts'.
- Some third-party scanners: display raw text only.
- Creating the code: never requires an install.
Split the name so it files correctly
Both platforms honour the structured name field, so always fill first and last name in their separate boxes rather than jamming everything into one. Do it wrong and the contact sorts under the wrong letter, which people rarely fix afterwards.
The generator writes a proper N field plus a display name, so a scanner that reads it natively slots your surname where it belongs on both iOS and Android.
Keep it lean so more scanners cope
The fewer fields you encode, the coarser and more forgiving the pattern — which helps the weaker scanners that only sometimes handle vCards. Stick to name, one number and an email for the widest no-app success.
Piling in a second phone, an address and a job title makes a dense code that the reliable readers still manage but marginal ones choke on. Density, not any app requirement, is what usually breaks a contact scan.
Make a scan-to-save contact code
- Fill firstName and lastName. Use the separate name fields so the phone files you under the right letter — the most common mistake is putting a full name in one box.
- Add phone and email. Enter the number and email you actually use; one clean mobile scans more reliably than several lines of numbers.
- Add org and title if they fit. Watch the density preview — if the pattern looks like fine noise, drop the title before it hurts no-app scanning.
- Test on a plain iPhone camera. Confirm the contact preview appears without opening any scanner app.
Technical details
- Maximum characters: 4296
- Recommended error correction: Q (quartile) — a contact card often ends up on paper that gets scuffed in a wallet, so the extra recovery keeps a slightly denser vCard readable.
- Uses VCARD format with a structured N field so iOS and Android file the surname correctly.
- No-app scanning is smoothest on iPhone Camera (iOS 11+) and Google Lens; keep fields few to help marginal readers.
Frequently asked questions
- Can someone save my contact without an app?
- On iPhone, yes — the Camera app reads the card from iOS 11 and offers 'Add Contact'. On Android, Google Lens does the same and is on nearly every phone. Only some third-party scanners fail to parse it and show raw text instead.
- Why does one phone show my name and another shows code?
- The difference is the scanner. Apps that understand the vCard format present a tidy contact card; ones that do not simply display the raw VCARD text. Use the phone's own camera or Google Lens for the clean result.
- Do I need an app to make the contact code?
- No. You fill in first name, last name, phone and email here in the browser, then download the image. Nothing is installed to create it, and on modern phones nothing is installed to read it.
- Why did my contact sort under the wrong letter?
- The name was likely put in a single field. Phones sort by the structured last-name field, so fill firstName and lastName separately. This tool writes both, so the surname lands in the right place on iOS and Android.
- Does it work offline once scanned?
- Yes. All the details live inside the code, so a phone in airplane mode reads and saves the contact with no connection. There is no server lookup at any point during the scan.
- Will adding a photo help it scan without an app?
- No, the opposite. A photo bloats the data and makes the code far denser, which is exactly what causes weaker no-app scanners to fail. Leave the photo out and let the person add one themselves.