Unicode Finder

"Ε" U+0395(GREEK CAPITAL LETTER EPSILON)

Ε
U+0395
Όνομα Μπλοκ
Greek and Coptic
Όνομα
GREEK CAPITAL LETTER EPSILON

Programming

C
\u0395
JavaScript
\u0395
Java
\u0395
Json
\u0395
Python
\u0395
Perl
\x{0395}
PHP
\x{0395}
Ruby
\u{0395}
Rust
\u{395}
Go
\u0395

Web

CSS
\000395
HtmlDecimal
Ε
HtmlHexadecimal
Ε
Url
%CE%95

Code

MD5
b6070f78f4bc56148c0d9880d752e442
Sha1
036f059767315becdbfcf3ff998cd08cf1e33d26
Base64
zpU=

Παραδείγματα Χρήσης

Programming Languages

C:

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

JavaScript:

const char = '\u0395';
console.log(char);  // Output: Ε

Java:

char c = '\u0395';
System.out.println(c);  // Output: Ε

JSON:

{"text": "\u0395"}  // Value: Ε

Python:

char = '\u0395'
print(char)  # Output: Ε

Perl:

my $char = "\x{0395}";
print $char;  # Output: Ε

PHP:

$char = "\x{0395}";
echo $char;  // Output: Ε

Ruby:

char = "\u{0395}"
puts char  # Output: Ε

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000395";  /* Display: Ε */
}

HTML Decimal:

<p>HTML decimal: &#917;</p>  <!-- Display: Ε -->

HTML Hexadecimal:

<p>HTML hex: &#x0395;</p>  <!-- Display: Ε -->

URL Encoding:

// Ε URL encoding
https://unicodefinder.com/search.php?query=%CE%95

Encodings

MD5:

b6070f78f4bc56148c0d9880d752e442

SHA1:

036f059767315becdbfcf3ff998cd08cf1e33d26

Base64:

zpU=