Tested tool guide
Tested browser tools
Checked August 16, 2026
What vCard Viewer & Editor does, with a checked example
This page parses a vCard (.vcf) file - the interchange format for phone and email address books - and shows every stored field as an editable form: name, phones, emails, addresses, org, notes, and the contact photo. Paste the text or load the file; each BEGIN:VCARD block becomes a card you can edit and re-export. The usual surprise: one .vcf is rarely one contact - address-book exports routinely pack hundreds of cards into a single file, and long lines are folded at 75 octets with a leading space, so raw text looks mangled but parses cleanly.
Worked example
A concrete input and expected output from the current implementation.
Input
BEGIN:VCARD
VERSION:3.0
FN:Ada Lovelace
N:Lovelace;Ada;;;
TEL;TYPE=CELL:+44 20 7946 0958
EMAIL:[email protected]
END:VCARD
->
Expected output
One card renders: name Ada Lovelace (from FN), structured name Lovelace / Ada (from N), phone +44 20 7946 0958 with type CELL, email [email protected], format VERSION 3.0, and an empty photo area.
The card has five properties and the display is a direct transcription of them: FN supplies the display name, N the split surname and given name, TEL and EMAIL their values with the TYPE parameter kept as the phone label, and no PHOTO line means no photo. VERSION tells the parser which dialect to apply.