Json To Vcf Converter Jun 2026
| Common JSON Key | VCF Property | Description | | :--- | :--- | :--- | | name , full_name | FN | Formatted name | | first_name + last_name | N | Structured name (Last;First;) | | phone , mobile , tel | TEL | Telephone number | | email , email_address | EMAIL | Email address | | company , org | ORG | Organization | | title , job_title | TITLE | Job position | | address , location | ADR | Physical address | | url , website | URL | Website | | photo , avatar (base64) | PHOTO | Embedded image |
Names containing accents or special characters (e.g., Müller, François) can easily break during migration if the formats handle text encoding differently. json to vcf converter
# Add structured name (N) n = vcard.add('n') n.value = vobject.vcard.Name( family=last, given=first, additional='', prefix='', suffix='' ) | Common JSON Key | VCF Property |