What's the best way to identify if a string (is or) might be UTF-8 encoded? The Win32 API IsTextUnicode isn't of much help here. Also, the string will not have an UTF-8 BOM, so that cannot be checked for. And, yes, I know that only characters above the ASCII range are encoded with more than 1 byte.

link|improve this question

What is the language your trying this in ? – Martijn Laarman Dec 18 '08 at 9:10
Doesn't really matter - I'm looking for a general method. But if you can give something that works for a particular language, then please chime in. – Johann Gerell Dec 18 '08 at 9:13
And, thou shall not find a BOM at the begining of an UTF-8 stream, it makes no sense as UTF-8 is the same whatever the byte order is. – mat Dec 18 '08 at 9:38
Yes, but it's still called "BOM" by some. I prefer to call it "preamble" (as .NET) or "signature". It can still be useful for the purpose of identifying the encoding. – Johann Gerell Dec 18 '08 at 10:12
feedback

4 Answers

up vote 9 down vote accepted

chardet character set detection developed by Mozilla used in FireFox. Source code

jchardet is a java port of the source from mozilla's automatic charset detection algorithm.

NCharDet is a .Net (C#) port of a Java port of the C++ used in the Mozilla and FireFox browsers.

Code project C# sample that uses Microsoft's MLang for character encoding detection.

UTRAC is a command line tool and library written in c++ to detect string encoding

cpdetector is a delphi library used for encoding detection

Another useful post that points to a lot of libraries to help you determine character encoding http://fredeaker.blogspot.com/2007/01/character-encoding-detection.html

You could also take a look at the related question http://stackoverflow.com/questions/373081/how-can-i-best-guess-the-encoding-when-the-bom-byte-order-mark-is-missing, it has some useful content.

link|improve this answer
feedback

There is no really reliable way, but basically, as a random sequence of bytes (e.g. a string in an standard 8 bit encoding) is very unlikely to be a valid UTF-8 string (if the most significant bit of a byte is set, there are very specific rules as to what kind of bytes can follow it in UTF-8), you can try decoding the string as UTF-8 and consider that it is UTF-8 if there are no decoding errors.

Determining if there were decoding errors is another problem altogether, many Unicode libraries simply replace invalid characters with a question mark without indicating whether or not an error occurred. So you need an explicit way of determining if an error occurred while decoding or not.

link|improve this answer
feedback

This W3C page has a perl regular expression for validating UTF-8

link|improve this answer
If you're reading a stream and you might not have the beginning, you should either loose the \A at the begining or add a ".{0,5}?" just after it to capture the first truncated character. – mat Dec 18 '08 at 9:27
I would recommend doing this by using the language's standard Unicode library rather that reimplementing it through regular expressions. – Laurent Dec 18 '08 at 9:38
feedback

To do character detection in ruby install the 'chardet' gem

sudo gem install chardet

Here's a little ruby script to run chardet over the standard input stream.

require "rubygems"
require 'UniversalDetector' #chardet gem
infile =  $stdin.read()
p UniversalDetector::chardet(infile)

Chardet outputs a guess at the character set encoding and also a confidence level (0-1) from its statistical analysis

see also this snippet

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.