i want to get data from sql server data base encoded in utf8 encoding
i have looked into it i found this answer : Is it possible to have SQL Server convert collation to UTF-8 / UTF-16 , i used collation utf8_unicode_ci in the query like this :
select code collation utf8_unicode_ci from testTable where code = 33;
i got an error , i also found this link : Convert output of MySQL query to utf8, used this query :
select CONVERT(CAST(code as BINARY) USING utf8) as code from testTable where code = 33;
but i get "" at beginning of the output file . im lost now