I have installed postgreSQL.
I use pgAdminIII as admin panel.
I am trying to watch tables content and see following:

How to avoid encoding problem?
I have installed postgreSQL.
I use pgAdminIII as admin panel.
I am trying to watch tables content and see following:

How to avoid encoding problem?
For a UTF8 database, pgAdmin should always display strings correctly. The most likely explanation is that the data itself is incorrect.
This generally happens when a client application sends data in a format which doesn't match its client_encoding setting. If this is the case, setting client_encoding correctly would prevent this from happening (provided the client application's code page is supported by Postgres). This wouldn't fix the existing data, but it might be possible to repair it with the convert function.
set PGCLIENTENCODING=... in cmd. The list of allowed encodings is here.