Unicode Finder

"έ" U+03AD(GREEK SMALL LETTER EPSILON WITH TONOS)

έ
U+03AD
Όνομα Μπλοκ
Greek and Coptic
Όνομα
GREEK SMALL LETTER EPSILON WITH TONOS

Programming

C
\u03AD
JavaScript
\u03AD
Java
\u03AD
Json
\u03AD
Python
\u03AD
Perl
\x{03AD}
PHP
\x{03AD}
Ruby
\u{03AD}
Rust
\u{3AD}
Go
\u03AD

Web

CSS
\0003AD
HtmlDecimal
έ
HtmlHexadecimal
έ
Url
%CE%AD

Code

MD5
edcf32c27d4c1fe472d348b962105dee
Sha1
dcf408eec84d40d72130669c44f66e85fe095fc5
Base64
zq0=

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

Programming Languages

C:

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

JavaScript:

const char = '\u03AD';
console.log(char);  // Output: έ

Java:

char c = '\u03AD';
System.out.println(c);  // Output: έ

JSON:

{"text": "\u03AD"}  // Value: έ

Python:

char = '\u03AD'
print(char)  # Output: έ

Perl:

my $char = "\x{03AD}";
print $char;  # Output: έ

PHP:

$char = "\x{03AD}";
echo $char;  // Output: έ

Ruby:

char = "\u{03AD}"
puts char  # Output: έ

Rust:

let c = '\u{3AD}';
println!("{}", c);  // Output: έ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0003AD";  /* Display: έ */
}

HTML Decimal:

<p>HTML decimal: &#941;</p>  <!-- Display: έ -->

HTML Hexadecimal:

<p>HTML hex: &#x03AD;</p>  <!-- Display: έ -->

URL Encoding:

// έ URL encoding
https://unicodefinder.com/search.php?query=%CE%AD

Encodings

MD5:

edcf32c27d4c1fe472d348b962105dee

SHA1:

dcf408eec84d40d72130669c44f66e85fe095fc5

Base64:

zq0=