Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 206
GHOV Avatar asked Jun 13 '11 07:06

GHOV


People also ask

What is Unicode string type?

Unicode is a standard encoding system that is used to represent characters from almost all languages. Every Unicode character is encoded using a unique integer code point between 0 and 0x10FFFF . A Unicode string is a sequence of zero or more code points.

What is Unicode text example?

A code point takes the form of U+<hex-code> , ranging from U+0000 to U+10FFFF . An example code point looks like this: U+004F . Its meaning depends on the character encoding used. Unicode defines different characters encodings, the most used ones being UTF-8, UTF-16 and UTF-32.

What is Unicode string in Java?

Unicode is a 16-bit character encoding system. The lowest value is \u0000 and the highest value is \uFFFF. UTF-8 is a variable width character encoding. UTF-8 has the ability to be as condensed as ASCII but can also contain any Unicode characters with some increase in the size of the file.


1 Answers

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.

like image 69
midhunhk Avatar answered Sep 25 '22 20:09

midhunhk