I have a MySQL database in a Linux server , character-set=utf8 collation=utf8_unicode_ci .. write/read Arabic characters with php is fine , no issues ever .. however when reading the database data directly from the server using webmin it shows something like this : ال٠..... anyway , I didn't care about that cause reading/writng in Arabic from php was perfect ..
now I'm trying to read with VB.net .. connecting like this :
MySqlConnection.ConnectionString = "server=x.x.x.x; user id=xx; password=xx; database=xx; CharSet=utf8 "
the output is like this :الموضو trying many solutions like :
bytes = Encoding.Default.GetBytes(result)
arabic= Encoding.GetEncoding(xxxx).GetString(bytes)
without any success !!! I need help please ..