Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What text encoding to use?

I need to setup my PostgreSQL DB's text encoding to handle non-American English characters that you'd find showing up in languages such as German, Spanish, and French. What character encoding should I use?

like image 801
xanadont Avatar asked Mar 27 '26 08:03

xanadont


2 Answers

Start with UTF-8. It covers every character used at the world. Prepare your DB for world domination.

like image 118
BalusC Avatar answered Apr 02 '26 18:04

BalusC


Unless you have a very good reason not to, use UTF-8. For the list of languages you cite, latin-1 would be acceptable (but not quite: it misses one, admittedly are, character for French: œ). Unicode is very mature now, there is little reason to reject it on principle. On the contrary, if you ever need to extend the list of languages you work with, you will be glad to have chosen an encoding that's able to deal with them.

like image 22
Arthur Reutenauer Avatar answered Apr 02 '26 20:04

Arthur Reutenauer