1.QR code free zxing library: https://github.com/zxing/zxing How to create QRcode: http://www.swetake.com/qrcode/index-e.html Open Source QR Code Library: https://osdn.jp/projects/qrcode jquery.qrcode.js: https://github.com/jeromeetienne/jquery-qrcode 2.PDF417 no utf-16 3.DM no free https://en.wikipedia.org/wiki/VCard /* utf.js - UTF-8 <=> UTF-16 convertion * * Copyright (C) 1999 Masanao Izumo <iz@onicos.co.jp> * Version: 1.0 * LastModified: Dec 25 1999 * This library is free. You can redistribute it and/or modify it. */ /* * Interfaces: * utf8 = utf16to8(utf16); * utf16 = utf16to8(utf8); */ function utf16to8(str) { var out, i, len, c; out = ""; len = str.length; for(i = 0; i < len; i++) { c = str.charCodeAt(i); if ((c >= 0x0001) && (c <= 0x007F)) { out += str.charAt(i); } else if (c > 0x07FF) { out += String.fromCharCode(0xE0 | ((c >> 12) & 0x0F)); out += String.fromCharC...