Hi,
 
I'm a new user of PostgreSQL. I wrote the following statement to compare 2 Chinese words if they are the same :
 SELECT '黃'='李';
 
(
    For those who cannot read Chinese, can use the following statement : 
        SELECT (chr(182) || chr(192))=(chr(167) || chr(245));
)
  
I expected it will return false to me, but it return true. 
Can anyone help me to solve this? Thx.
oclam