1*13067778SAndreas Gohr<?php 2*13067778SAndreas Gohr/** 3*13067778SAndreas Gohr * UTF-8 lookup table for upper case accented letters 4*13067778SAndreas Gohr * 5*13067778SAndreas Gohr * This lookuptable defines replacements for accented characters from the ASCII-7 6*13067778SAndreas Gohr * range. This are upper case letters only. 7*13067778SAndreas Gohr * 8*13067778SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 9*13067778SAndreas Gohr * @see utf8_deaccent() 10*13067778SAndreas Gohr */ 11*13067778SAndreas Gohrreturn [ 12*13067778SAndreas Gohr 'Á' => 'A', 13*13067778SAndreas Gohr 'À' => 'A', 14*13067778SAndreas Gohr 'Ă' => 'A', 15*13067778SAndreas Gohr 'Â' => 'A', 16*13067778SAndreas Gohr 'Å' => 'A', 17*13067778SAndreas Gohr 'Ä' => 'Ae', 18*13067778SAndreas Gohr 'Ã' => 'A', 19*13067778SAndreas Gohr 'Ą' => 'A', 20*13067778SAndreas Gohr 'Ā' => 'A', 21*13067778SAndreas Gohr 'Æ' => 'Ae', 22*13067778SAndreas Gohr 'Ḃ' => 'B', 23*13067778SAndreas Gohr 'Ć' => 'C', 24*13067778SAndreas Gohr 'Ĉ' => 'C', 25*13067778SAndreas Gohr 'Č' => 'C', 26*13067778SAndreas Gohr 'Ċ' => 'C', 27*13067778SAndreas Gohr 'Ç' => 'C', 28*13067778SAndreas Gohr 'Ď' => 'D', 29*13067778SAndreas Gohr 'Ḋ' => 'D', 30*13067778SAndreas Gohr 'Đ' => 'D', 31*13067778SAndreas Gohr 'Ð' => 'Dh', 32*13067778SAndreas Gohr 'É' => 'E', 33*13067778SAndreas Gohr 'È' => 'E', 34*13067778SAndreas Gohr 'Ĕ' => 'E', 35*13067778SAndreas Gohr 'Ê' => 'E', 36*13067778SAndreas Gohr 'Ě' => 'E', 37*13067778SAndreas Gohr 'Ë' => 'E', 38*13067778SAndreas Gohr 'Ė' => 'E', 39*13067778SAndreas Gohr 'Ę' => 'E', 40*13067778SAndreas Gohr 'Ē' => 'E', 41*13067778SAndreas Gohr 'Ḟ' => 'F', 42*13067778SAndreas Gohr 'Ƒ' => 'F', 43*13067778SAndreas Gohr 'Ğ' => 'G', 44*13067778SAndreas Gohr 'Ĝ' => 'G', 45*13067778SAndreas Gohr 'Ġ' => 'G', 46*13067778SAndreas Gohr 'Ģ' => 'G', 47*13067778SAndreas Gohr 'Ĥ' => 'H', 48*13067778SAndreas Gohr 'Ħ' => 'H', 49*13067778SAndreas Gohr 'Í' => 'I', 50*13067778SAndreas Gohr 'Ì' => 'I', 51*13067778SAndreas Gohr 'Î' => 'I', 52*13067778SAndreas Gohr 'Ï' => 'I', 53*13067778SAndreas Gohr 'Ĩ' => 'I', 54*13067778SAndreas Gohr 'Į' => 'I', 55*13067778SAndreas Gohr 'Ī' => 'I', 56*13067778SAndreas Gohr 'Ĵ' => 'J', 57*13067778SAndreas Gohr 'Ķ' => 'K', 58*13067778SAndreas Gohr 'Ĺ' => 'L', 59*13067778SAndreas Gohr 'Ľ' => 'L', 60*13067778SAndreas Gohr 'Ļ' => 'L', 61*13067778SAndreas Gohr 'Ł' => 'L', 62*13067778SAndreas Gohr 'Ṁ' => 'M', 63*13067778SAndreas Gohr 'Ń' => 'N', 64*13067778SAndreas Gohr 'Ň' => 'N', 65*13067778SAndreas Gohr 'Ñ' => 'N', 66*13067778SAndreas Gohr 'Ņ' => 'N', 67*13067778SAndreas Gohr 'Ó' => 'O', 68*13067778SAndreas Gohr 'Ò' => 'O', 69*13067778SAndreas Gohr 'Ô' => 'O', 70*13067778SAndreas Gohr 'Ö' => 'Oe', 71*13067778SAndreas Gohr 'Ő' => 'O', 72*13067778SAndreas Gohr 'Õ' => 'O', 73*13067778SAndreas Gohr 'Ø' => 'O', 74*13067778SAndreas Gohr 'Ō' => 'O', 75*13067778SAndreas Gohr 'Ơ' => 'O', 76*13067778SAndreas Gohr 'Ṗ' => 'P', 77*13067778SAndreas Gohr 'Ŕ' => 'R', 78*13067778SAndreas Gohr 'Ř' => 'R', 79*13067778SAndreas Gohr 'Ŗ' => 'R', 80*13067778SAndreas Gohr 'Ś' => 'S', 81*13067778SAndreas Gohr 'Ŝ' => 'S', 82*13067778SAndreas Gohr 'Š' => 'S', 83*13067778SAndreas Gohr 'Ṡ' => 'S', 84*13067778SAndreas Gohr 'Ş' => 'S', 85*13067778SAndreas Gohr 'Ș' => 'S', 86*13067778SAndreas Gohr 'Ť' => 'T', 87*13067778SAndreas Gohr 'Ṫ' => 'T', 88*13067778SAndreas Gohr 'Ţ' => 'T', 89*13067778SAndreas Gohr 'Ț' => 'T', 90*13067778SAndreas Gohr 'Ŧ' => 'T', 91*13067778SAndreas Gohr 'Ú' => 'U', 92*13067778SAndreas Gohr 'Ù' => 'U', 93*13067778SAndreas Gohr 'Ŭ' => 'U', 94*13067778SAndreas Gohr 'Û' => 'U', 95*13067778SAndreas Gohr 'Ů' => 'U', 96*13067778SAndreas Gohr 'Ü' => 'Ue', 97*13067778SAndreas Gohr 'Ű' => 'U', 98*13067778SAndreas Gohr 'Ũ' => 'U', 99*13067778SAndreas Gohr 'Ų' => 'U', 100*13067778SAndreas Gohr 'Ū' => 'U', 101*13067778SAndreas Gohr 'Ư' => 'U', 102*13067778SAndreas Gohr 'Ẃ' => 'W', 103*13067778SAndreas Gohr 'Ẁ' => 'W', 104*13067778SAndreas Gohr 'Ŵ' => 'W', 105*13067778SAndreas Gohr 'Ẅ' => 'W', 106*13067778SAndreas Gohr 'Ý' => 'Y', 107*13067778SAndreas Gohr 'Ỳ' => 'Y', 108*13067778SAndreas Gohr 'Ŷ' => 'Y', 109*13067778SAndreas Gohr 'Ÿ' => 'Y', 110*13067778SAndreas Gohr 'Ź' => 'Z', 111*13067778SAndreas Gohr 'Ž' => 'Z', 112*13067778SAndreas Gohr 'Ż' => 'Z', 113*13067778SAndreas Gohr 'Þ' => 'Th', 114*13067778SAndreas Gohr]; 115