I created the table:
jyotish=# CREATE TABLE graha(name varchar(80),english_name varchar(80),symbol char(1));
And I try to create a record with the UTF-8 Sun Symbol like this:
jyotish=# INSERT INTO graha VALUES('surya','sun','u\2609');
I get the error:
ERROR: value too long for type character(1)
How do I put UTF-8 symbols in a column?