EPC Codes: Paying via QR

SergeantBiggs

technologyfinance

347 Words

2025-08-31 12:25 +0000


I recently learned about a new method of transferring money through SEPA: EPC Codes.

I encountered them when I got a bill with a QR code on it that I could scan with my banking app. When I did it, it autopopulated all of the necessary fields (recipient, IBAN, amount, etc). I wondered how it all works and it turns out being much simpler than I thought.

I initially thought it must be some kind of URL that causes an API request to be made to populate the necessary data. But when I scanned the code with a regular QR scanner I noticed that it’s a simple text format:

BCD
002
1
SCT

Alice
DE89370400440532013000
EUR5

The lines mean the following and are quite self-explanatory:

  1. Service Tag (always BCD)
  2. Version (001 or 002)
  3. Character encoding (1=UTF-8)
  4. “Identification” (always SCT)
  5. BIC of the recipient (optional in version 2 if inside the EEA)
  6. Name of recipient
  7. IBAN of recipient
  8. Payment amount (optional)
  9. Purpose (optional)
  10. Reference (optional)
  11. Reason for transfer (optional)
  12. additional (optional) (note to the user of max. 70 characters)

All optional fields can be either left empty or completely omitted if they are not followed by other non-empty fields.

All in all, it’s a pretty simple and robust system. It’s mostly handy for organisations sending out bills. QR codes can be autogenerated and scanning one is simpler and less error-prone than entering the information manually. It can also be used by organisations soliciting donations.

It (currently) isn’t ideal for quickly sending money between friends, because there’s no “user-friendly” way of generating these codes. Theoretically mobile banking apps could generate them pretty easily, since they already have all of the information. The user would just have to optionally enter an amount. Combined with SEPA instant transfer (which all Eurozone payment providers now have to support), it would be a pretty simple, decentralised, and privacy-preserving way of sending money between friends. I’m not aware of any banking application that uses this scheme, but it would be quite easy to implement and a nice alternative to centralised payment providers (e.g. Paypal).

Articles from blogs I read

Claude Code won April Fools Day this year

They gave people a heckin tamagochi, what's not to like?

via Xe Iaso's blog April 1, 2026

tar: a slop-free alternative to rsync

So apparently rsync is slop now. When I heard, I wanted to drop a quick note on my blog to give an alternative: tar. It doesn’t do everything that rsync does, in particular identifying and skipping up-to-date files, but tar + ssh can definitely accomodate th…

via Drew DeVault's blog March 28, 2026

Mastodon Stories for systemd v260

On March 17 we released systemd v260 into the wild. In the weeks leading up to that release (and since then) I have posted a series of serieses of posts to Mastodon about key new features in this release, under the #systemd260 hash tag. In case you aren't …

via Pid Eins March 27, 2026

What happens if we represent unix time as floats?

When evaluating the performance of some software component, I want to get high precision. But when I talk about millions of years in the future, I don't care about the exact second.

via Ξ January 16, 2026

Generated by openring