Unicode Finder

"è" U+00E8(LATIN SMALL LETTER E WITH GRAVE)

è
U+00E8
Nome del Blocco
Latin-1 Supplement
Nome
LATIN SMALL LETTER E WITH GRAVE

Programming

C
\u00E8
JavaScript
\u00E8
Java
\u00E8
Json
\u00E8
Python
\u00E8
Perl
\x{00E8}
PHP
\x{00E8}
Ruby
\u{00E8}
Rust
\u{E8}
Go
\u00E8

Web

CSS
\0000E8
HtmlDecimal
è
HtmlHexadecimal
è
Url
%C3%A8

Code

MD5
0a35e149dbbb2d10d744bf675c7744b1
Sha1
151666e2e2873be7fc40e7ae214f38b00bc50183
Base64
w6g=

Esempi di Utilizzo

Programming Languages

C:

char c = '\u00E8';
printf("%c\n", c);  // Output: è

JavaScript:

const char = '\u00E8';
console.log(char);  // Output: è

Java:

char c = '\u00E8';
System.out.println(c);  // Output: è

JSON:

{"text": "\u00E8"}  // Value: è

Python:

char = '\u00E8'
print(char)  # Output: è

Perl:

my $char = "\x{00E8}";
print $char;  # Output: è

PHP:

$char = "\x{00E8}";
echo $char;  // Output: è

Ruby:

char = "\u{00E8}"
puts char  # Output: è

Rust:

let c = '\u{E8}';
println!("{}", c);  // Output: è

Go:

char := '\u00E8'
fmt.Printf("%c\n", char)  // Output: è

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0000E8";  /* Display: è */
}

HTML Decimal:

<p>HTML decimal: &#232;</p>  <!-- Display: è -->

HTML Hexadecimal:

<p>HTML hex: &#x00E8;</p>  <!-- Display: è -->

URL Encoding:

// è URL encoding
https://unicodefinder.com/search.php?query=%C3%A8

Encodings

MD5:

0a35e149dbbb2d10d744bf675c7744b1

SHA1:

151666e2e2873be7fc40e7ae214f38b00bc50183

Base64:

w6g=