With this query:
UPDATE `arg`.`arg_currency` SET `symbol` = '' WHERE `arg_currency`.`id` =2 LIMIT 1 ;
I get this error:
Warning: #1366 Incorrect string value: '\xF0\x90\x80\xA4' for column 'symbol' at row 1
The column symbol
was a CHAR(1)
utf8_roman_ci
, but I've both tried to change the collation to _general and to _unicode, and the chars to 4, but I've still got the same error.
What am I doing wrong?
(I've both tried to insert it via custom php code and via phpmyadmin)