<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN">
<HTML>
<HEAD>
  <META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=UTF-8">
  <META NAME="GENERATOR" CONTENT="GtkHTML/4.1.92">
</HEAD>
<BODY>
I've some problems (again) with UTF-8. Try this code:<BR>
<BR>
char[] chars = ['à','è','ì'];<BR>
chars.canFind('è');<BR>
<BR>
It doesn't work:<BR>
<A HREF="mailto:std.utf.UTFException@std">std.utf.UTFException@std</A>/utf.d(644): Invalid UTF-8 sequence (at index 1)<BR>
<BR>
But this one works:<BR>
<BR>
string[] chars = ["à","è","ì"];<BR>
chars.canFind("è");<BR>
<BR>
I'm using dmd/druntime/phobos downloaded from github today.
</BODY>
</HTML>