Actually, that depends on the environment you are working in, I suppose. Testing in my local environment, I got this:<div><br></div><div><div>1> io:format("~ts~n",[[16#00E9]]).        </div><div>é</div><div>ok</div>
</div><div>2> io:format("~ts~n",[[16#0065,16#0301]]).</div><div>e ́</div><div>ok</div><div><div>3> io:format("~ts~n",[[16#0301,16#0065]]). </div><div> ́e</div><div>ok</div></div><div><br></div><div>
CGS</div><div><br></div><div><br></div><div><br></div><div><br><br><div class="gmail_quote">On Tue, Jul 31, 2012 at 5:24 PM, Fred Hebert <span dir="ltr"><<a href="mailto:mononcqc@ferd.ca" target="_blank">mononcqc@ferd.ca</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
  
    
  
  <div bgcolor="#FFFFFF" text="#000000"><div class="im">
    <br>
    <div>On 12-07-31 11:19 AM, Fred Hebert
      wrote:<br>
    </div>
    <blockquote type="cite">
      
      The tricky thing is that if I enter a string containing " ́e" in
      my module and later reverse it, I will get "é" and not "e ́" as a
      final result. What was initially [16#0301,16#0065] gets reversed
      into [16#0065,16#0301], which is not the same as the correct
      visual representation "<font color="#ff0000"> ́e</font>"
      (represented as ([16#0065, $ , 16#0301]), with an implicit space
      in there)<br>
      <br>
    </blockquote></div>
    Quick note that the last " ́e" in there  (possibly in red, depending
    of your mail client) should have been "<font color="#ff0000">e ́</font>",
    which is represented as [16#0065, $ , 16#0301]. Sorry for the
    confusion.<br>
  </div>

<br>_______________________________________________<br>
erlang-questions mailing list<br>
<a href="mailto:erlang-questions@erlang.org">erlang-questions@erlang.org</a><br>
<a href="http://erlang.org/mailman/listinfo/erlang-questions" target="_blank">http://erlang.org/mailman/listinfo/erlang-questions</a><br>
<br></blockquote></div><br></div>