What is the following Unicode string \xe9?

前端 未结 1 1671
醉梦人生
醉梦人生 2021-02-11 16:11

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:04

    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)
提交回复
热议问题