From Bugzilla Helper: User-Agent: Mozilla/5.0 (compatible; MSIE 6.0; Windows; U; AIIEEEE!; Win98; Windows 98; en-US; Gecko masquerading as IE; should it matter?; rv:1.8b) Gecko/20050217 Description of problem: wc counts bytes and not characters, but documentation seems to indicate that there is a distinction. Version-Release number of selected component (if applicable): coreutils-5.2.1-48.1 How reproducible: Always Steps to Reproduce: 1.LANG=en_US.UTF-8 echo -ne "\xe2\x80\xbe" | /usr/bin/wc -m -c 2. 3. Actual Results: 3 3 Expected Results: 1 3 Additional info:
Perhaps you should have tried: "echo -ne "\xe2\x80\xbe" | LANG=en_US.UTF-8 /usr/bin/wc -m -c".