You can execute the following SQL statement to query system table pg_collation and view character sets and their corresponding collations and collation types:
select pg_encoding_to_char(collencoding) as encoding,collname,collcollate,collctype from pg_collation ;