Search code examples
unicodecharacter-encoding

What is the following Unicode string \xe9?


I wanted to know what is the following Unicode string \xe9?

And is there a detailed tutorial that explains this Unicode string?


Solution

  • The unicode string for \xe9 is an accented e - é

    \xe9 is an encoded string. u'\xe9' is a Unicode string that contains the unicode character U+00E9 (LATIN SMALL LETTER E WITH ACUTE).

    References:
    From this link. Check this link also. Adding one more link Hope you find it useful.