Skip to content

Instantly share code, notes, and snippets.

@sergejmueller
Last active November 25, 2025 14:00
Show Gist options
  • Select an option

  • Save sergejmueller/35c8a055acfe8728f458 to your computer and use it in GitHub Desktop.

Select an option

Save sergejmueller/35c8a055acfe8728f458 to your computer and use it in GitHub Desktop.
List of EU Countries (ISO-3166-2) with equivalent VAT Rates
$vat_rates = array(
'AT' => 20, // Austria
'BE' => 21, // Belgium
'BG' => 20, // Bulgaria
'HR' => 25, // Croatia
'CY' => 19, // Cyprus
'CZ' => 21, // Czech Republic
'DK' => 25, // Denmark
'EE' => 20, // Estonia
'FI' => 24, // Finland
'FR' => 20, // France
'DE' => 19, // Germany
'GR' => 23, // Greece
'HU' => 27, // Hungary
'IE' => 23, // Ireland
'IT' => 22, // Italy
'LV' => 21, // Latvia
'LT' => 21, // Lithuania
'LU' => 15, // Luxembourg
'MT' => 18, // Malta
'NL' => 21, // Netherlands
'PL' => 23, // Poland
'PT' => 23, // Portugal
'RO' => 24, // Romania
'SK' => 20, // Slovakia
'SI' => 22, // Slovenia
'ES' => 21, // Spain
'SE' => 25, // Sweden
'GB' => 20 // United Kingdom
);
@sergey-fritzler
Copy link

England ist nicht mehr in der EU...

@justaspal
Copy link

@PoeHaH
Copy link

PoeHaH commented Nov 4, 2016

The VAT percentage for Greece is 24, not 23

@justaspal
Copy link

Luxembourg 17% already

@dg76
Copy link

dg76 commented May 28, 2018

VAT for RO seems to be 19% by now according to the the link above and e.g. this link: https://www.vatlive.com/vat-rates/european-vat-rates/

@WadeStorm05
Copy link

It’s nice seeing all the eu vat rates laid out this clearly makes it way easier to double-check things when working with different countries. I have been doing a few calculations on vat calculator recently, so having this kind of reference definitely saves time.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment