Unicode Finder

"Έ" U+0388(GREEK CAPITAL LETTER EPSILON WITH TONOS)

Έ
U+0388
Blok Adı
Greek and Coptic
Ad
GREEK CAPITAL LETTER EPSILON WITH TONOS

Programming

C
\u0388
JavaScript
\u0388
Java
\u0388
Json
\u0388
Python
\u0388
Perl
\x{0388}
PHP
\x{0388}
Ruby
\u{0388}
Rust
\u{388}
Go
\u0388

Web

CSS
\000388
HtmlDecimal
Έ
HtmlHexadecimal
Έ
Url
%CE%88

Code

MD5
6276ade8959ee37b8d2e206d4ef01ce0
Sha1
31ffe2297931faedc3a2eb6bfd772aac35ca3537
Base64
zog=

Kullanım Örnekleri

Programming Languages

C:

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

JavaScript:

const char = '\u0388';
console.log(char);  // Output: Έ

Java:

char c = '\u0388';
System.out.println(c);  // Output: Έ

JSON:

{"text": "\u0388"}  // Value: Έ

Python:

char = '\u0388'
print(char)  # Output: Έ

Perl:

my $char = "\x{0388}";
print $char;  # Output: Έ

PHP:

$char = "\x{0388}";
echo $char;  // Output: Έ

Ruby:

char = "\u{0388}"
puts char  # Output: Έ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000388";  /* Display: Έ */
}

HTML Decimal:

<p>HTML decimal: &#904;</p>  <!-- Display: Έ -->

HTML Hexadecimal:

<p>HTML hex: &#x0388;</p>  <!-- Display: Έ -->

URL Encoding:

// Έ URL encoding
https://unicodefinder.com/search.php?query=%CE%88

Encodings

MD5:

6276ade8959ee37b8d2e206d4ef01ce0

SHA1:

31ffe2297931faedc3a2eb6bfd772aac35ca3537

Base64:

zog=