Unicode Finder

"e" U+0065(LATIN SMALL LETTER E)

e
U+0065
Block Name
Basic Latin
Name
LATIN SMALL LETTER E

Programming

C
\u0065
JavaScript
\u0065
Java
\u0065
Json
\u0065
Python
\u0065
Perl
\x{0065}
PHP
\x{0065}
Ruby
\u{0065}
Rust
\u{65}
Go
\u0065

Web

CSS
\000065
HtmlDecimal
e
HtmlHexadecimal
e
Url
e

Code

MD5
e1671797c52e15f763380b45e841ec32
Sha1
58e6b3a414a1e090dfc6029add0f3555ccba127f
Base64
ZQ==

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u0065';
console.log(char);  // Output: e

Java:

char c = '\u0065';
System.out.println(c);  // Output: e

JSON:

{"text": "\u0065"}  // Value: e

Python:

char = '\u0065'
print(char)  # Output: e

Perl:

my $char = "\x{0065}";
print $char;  # Output: e

PHP:

$char = "\x{0065}";
echo $char;  // Output: e

Ruby:

char = "\u{0065}"
puts char  # Output: e

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000065";  /* Display: e */
}

HTML Decimal:

<p>HTML decimal: &#101;</p>  <!-- Display: e -->

HTML Hexadecimal:

<p>HTML hex: &#x0065;</p>  <!-- Display: e -->

URL Encoding:

// e URL encoding
https://unicodefinder.com/search.php?query=e

Encodings

MD5:

e1671797c52e15f763380b45e841ec32

SHA1:

58e6b3a414a1e090dfc6029add0f3555ccba127f

Base64:

ZQ==