How to check file encoding in Linux? Handling multilingual scripts How to check file encoding in Linux? Handling multilingual scripts unix unix

How to check file encoding in Linux? Handling multilingual scripts


file gives you informations about a file, including, charset, languages, etc.. depending on file type.

Use --mime-encoding to get only the information you want.


Developers decided to use Latin-1 encoding as base for everyone, so this way nobody will override file encoding and corrupt foreign languages in it.

Latin-1 can't handle most languages. Flavours of Unicode (typically UTF-8) are preferred.

How can you check file encoding on linux?

With the file utility. It can only guess though.

If you had experience working with files in different languages, how did you manage to not override encoding of others?

Sensibly configured editors.


1. I have used iconv for converting back and forth, but since you don't know the encoding, try enca (Extremely Naive Charset Analyser) first. But in general, it is very hard to get it right since it requires knowledge of common words etc.

2. The only sane approach is to use a larger charset such as unicode for this. You could enforce this by adding a pre-checkin hook to your source control system which only allows correctly formatted utf-8 files (for instance).