Now I change my gnome-terminal's character encoding to "GBK" (default it is UTF-8), but how can I get the value(character encoding) in my Linux?

Thanks!

link|improve this question
Short writeup: Unix Terminals: Surviving the Encoding Hell – miku Mar 15 '11 at 0:21
feedback

2 Answers

The terminal uses environment variables to determine which character set to use therefore you can test it by looking at those variables Try

echo $LC_CTYPE

or

echo $LANG
link|improve this answer
feedback

Check encoding and language:

$ echo $LC_CTYPE
ISO-8859-1
$ echo $LANG
pt_BR

Get all languages:

$ locale -a

Change to pt_PT.utf8:

$ export LC_ALL=pt_PT.utf8 
$ export LANG="$LC_ALL"
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.