Unicode Finder

"Ë" U+00CB(LATIN CAPITAL LETTER E WITH DIAERESIS)

Ë
U+00CB
Block Name
Latin-1 Supplement
Name
LATIN CAPITAL LETTER E WITH DIAERESIS

Programming

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

Web

CSS
\0000CB
HtmlDecimal
Ë
HtmlHexadecimal
Ë
Url
%C3%8B

Code

MD5
30fa1542ce4c3fad58fc74a04a4651d3
Sha1
2eed51f19656140a6bd25f81241971656ae68623
Base64
w4s=

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u00CB';
console.log(char);  // Output: Ë

Java:

char c = '\u00CB';
System.out.println(c);  // Output: Ë

JSON:

{"text": "\u00CB"}  // Value: Ë

Python:

char = '\u00CB'
print(char)  # Output: Ë

Perl:

my $char = "\x{00CB}";
print $char;  # Output: Ë

PHP:

$char = "\x{00CB}";
echo $char;  // Output: Ë

Ruby:

char = "\u{00CB}"
puts char  # Output: Ë

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#203;</p>  <!-- Display: Ë -->

HTML Hexadecimal:

<p>HTML hex: &#x00CB;</p>  <!-- Display: Ë -->

URL Encoding:

// Ë URL encoding
https://unicodefinder.com/search.php?query=%C3%8B

Encodings

MD5:

30fa1542ce4c3fad58fc74a04a4651d3

SHA1:

2eed51f19656140a6bd25f81241971656ae68623

Base64:

w4s=