QR Paper Backup

Turn a secret or Base64/hex file bytes into a deterministic printable SVG sheet of numbered QR codes for offline paper archival. Runs locally in your browser.

Try:
Printable SVG sheet

About this tool

QR Paper Backup turns text or pasted file bytes into a printable SVG sheet of numbered QR codes. It is meant for offline archival of secrets, recovery notes, tiny configuration files, license keys, or other small payloads that you want to store on paper rather than another drive.

Each QR code contains a self-describing line:

QRB1|<index>|<total>|<id>|<base64-chunk>

The id is the first 8 hex characters of the SHA-256 digest of the complete original data, so every part can be tied back to the same set. To restore, scan all parts, sort them by index, concatenate the Base64 chunk fields, then Base64-decode the result.

Worked example

Input:

paper backup demo

Use Input encoding = Text, Bytes per QR code = 300, Columns = 2, QR error correction = M, and keep Print payload text on. The output is a deterministic SVG sheet with one QR code, a printed restore header, and the exact QRB1|1|1|... payload line under the code.

Limits & edge cases

FAQ

Can this encrypt my backup before printing?

No. Encrypt the data first with a separate encryption tool, then paste the ciphertext or its Base64 bytes here. Keeping encryption separate makes the printed QR format simple and auditable.

How do I restore the data later?

Scan every QR code, sort the lines by the numeric index field, concatenate the final Base64 chunk fields, and Base64-decode the combined text. The printed header repeats this process on the sheet.

What should I choose for bytes per QR code?

Use smaller chunks such as 100–300 bytes for reliable phone scanning on ordinary printers. Use larger chunks only when you have good print quality and want fewer codes.

Does losing one QR code make the backup unrecoverable?

Yes. QR error correction handles damage inside a code, but this tool does not add cross-code redundancy. Print all pages clearly and consider making multiple copies.

Developer & Automation Access

Run it from the terminal

Same engine as this page, headless — via the gizza CLI:

gizza tool qr-paper-backup "Recovery phrase, license key, or Base64 file bytes"

New to the CLI? Get gizza →

Open it by URL

Pre-fill and auto-run this tool with query parameters — the names match the API/CLI:

https://gizza.ai/tools/qr-paper-backup/?input=Recovery%20phrase%2C%20license%20key%2C%20or%20Base64%20file%20bytes&input_encoding=text&chunk_bytes=300&columns=3&error_correction=M&show_text=true

Machine-readable descriptor: tool.json — title + parameters JSON Schema for agents.