GHOV
GHOV

Reputation: 405

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?

Upvotes: 37

Views: 76233

Answers (1)

midhunhk
midhunhk

Reputation: 5554

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.

Upvotes: 66

Related Questions