Skip to content

Instantly share code, notes, and snippets.

@4Giedrius
Forked from sergejmueller/vat_rates.php
Last active November 8, 2016 12:14
Show Gist options
  • Save 4Giedrius/2f4551e9d323dfeca0c020683afd864e to your computer and use it in GitHub Desktop.
Save 4Giedrius/2f4551e9d323dfeca0c020683afd864e 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' => 24, // Greece
'HU' => 27, // Hungary
'IE' => 23, // Ireland
'IT' => 22, // Italy
'LV' => 21, // Latvia
'LT' => 21, // Lithuania
'LU' => 17, // Luxembourg
'MT' => 18, // Malta
'NL' => 21, // Netherlands
'PL' => 23, // Poland
'PT' => 23, // Portugal
'RO' => 20, // Romania
'SK' => 20, // Slovakia
'SI' => 22, // Slovenia
'ES' => 21, // Spain
'SE' => 25, // Sweden
'GB' => 20 // United Kingdom
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment