16

I am working with Postgres and newbie too,

I have to store the user's comment (like facebook comment) into database. probably I will use column type "text" to store the comment.

If in case the comment is mixed up with emojis (unicode), the text type is enough or I should use any other column type?

Anthony Mastrean
  • 21,850
  • 21
  • 110
  • 188
karthik
  • 305
  • 1
  • 3
  • 14

1 Answers1

9

The TEXT "character" type should be fine as UTF-8, generally, is a supported character set.

Anthony Mastrean
  • 21,850
  • 21
  • 110
  • 188