I found a workaround. After setting DB encoding to utf8_genereal_ci for the tables I am interested in to display Arabic characters, then I updated the php code in the downloading Adwords reports and then insert it in the db page is as follows:
<html> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <body> <?php setlocale(LC_ALL, 'ar_AE.utf8'); ///php code here ///var_dump array to check Arabic characters in values ?> </body> </html> Now the var_dump array displays Arabic values from reading the csv Adwords report file and then the code inserts correct encoded values in the db. Thank you! On Monday, August 17, 2015 at 2:50:52 PM UTC+3, Andrada Crisan wrote: > > Hello, > > How to display Arabic characters in keyword adwords reports? I can only > see encoded characters but no Arabic text. > > Thank you! > -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.google.com/+GoogleAdsDevelopers/posts =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message because you are subscribed to the Google Groups "AdWords API Forum" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/adwords-api?hl=en --- You received this message because you are subscribed to the Google Groups "AdWords API Forum" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. Visit this group at http://groups.google.com/group/adwords-api. To view this discussion on the web visit https://groups.google.com/d/msgid/adwords-api/bd88049a-9014-4677-b8d7-57a1ca98bcf1%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
