QR Code Generator

Coba Sekarang

Dokumentasi

Cara Pakai

Tambahkan parameter text di URL untuk generate QR code:

https://kelasphp-kafekoding.github.io/qrcode/?text=YOUR_TEXT&scale=5

Parameter scale opsional (1-10), default 5

Contoh Kode

<?php
$qr = "kelas php - kafekoding";
echo "<img src='https://kelasphp-kafekoding.github.io/qrcode/?text=$qr&scale=5'>";
?>
<img src="https://kelasphp-kafekoding.github.io/qrcode/?text=Hello%20World&scale=5">
const qr = "kelas php - kafekoding";
document.body.innerHTML = `<img src="https://kelasphp-kafekoding.github.io/qrcode/?text=${qr}&scale=5">`;