What is the following Unicode string \xe9?

前端 未结 1 1638
既然无缘
既然无缘 2021-02-11 16:18

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

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

1条回答
  •  广开言路
    2021-02-11 17:03

    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).

    From this link. Check this link also.
    Hope it is useful.

    0 讨论(0)
提交回复
热议问题