I want to store multiple languages at the same column. First i'm creating db and tables.
CREATE DATABASE dbname ENCODING 'UTF8'
I'm saving the data succesfully, but when i want to print it with a SELECT query, i get this error using psql.
ERROR: character with byte sequence 0xd9 0x84 in encoding "UTF8" has no equivalent in encoding "WIN1254"
So WIN1254 is Turkish which have different characters like ç, ş, ü... But i don't get this error only when i exclude Arabic, so the problem is not Turkish but Arabic. How can i solve this? Maybe i should do something while creating the db. Also while i'm printing, it doesn't print Turkish characters succesfully, just putting wrong characters.