<rdf:RDF> <!-- The é below is a single character #xE9 in NFC --> <rdf:Description rdf:about="http://example.org/#André"> <eg:owes>2000</eg:owes> </rdf:Description>
</rdf:RDF>
<http://example.org/#Andr\u00E9> <owes> "2000" .
*** #xE9 is the unicode for é?
<rdf:RDF> <!-- The %C3%A9 below corresponds to é under the %escaping algorithm for URIs. --> <rdf:Description rdf:about="http://example.org/#Andr%C3%A9"> <eg:owes>2000</eg:owes> </rdf:Description>
</rdf:RDF>
<http://example.org/#Andr%C3%A9> <owes> "2000" .
*** %C3%A9 is the % escaped UTF-8 encoded version of é
Neither test001 entails test002, nor test002 entails test001.
<rdf:RDF> <!-- The é below is two characters an e followed by #x301. It should be displayed identically to é. --> <rdf:Description rdf:about="http://example.org/#André">
<eg:owes>2000</eg:owes> </rdf:Description> </rdf:RDF>