Unicode Finder

"Ἒ" U+1F1A(GREEK CAPITAL LETTER EPSILON WITH PSILI AND VARIA)

U+1F1A
Tên Khối
Greek Extended
Tên
GREEK CAPITAL LETTER EPSILON WITH PSILI AND VARIA

Programming

C
\u1F1A
JavaScript
\u1F1A
Java
\u1F1A
Json
\u1F1A
Python
\u1F1A
Perl
\x{1F1A}
PHP
\x{1F1A}
Ruby
\u{1F1A}
Rust
\u{1F1A}
Go
\u1F1A

Web

CSS
\001F1A
HtmlDecimal
Ἒ
HtmlHexadecimal
Ἒ
Url
%E1%BC%9A

Code

MD5
7f3ce533f0241d537e58118151044ee6
Sha1
9de3fcc2fff9714ba6f5f61e33ce66eb05229cdb
Base64
4bya

Ví dụ Sử dụng

Programming Languages

C:

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

JavaScript:

const char = '\u1F1A';
console.log(char);  // Output: Ἒ

Java:

char c = '\u1F1A';
System.out.println(c);  // Output: Ἒ

JSON:

{"text": "\u1F1A"}  // Value: Ἒ

Python:

char = '\u1F1A'
print(char)  # Output: Ἒ

Perl:

my $char = "\x{1F1A}";
print $char;  # Output: Ἒ

PHP:

$char = "\x{1F1A}";
echo $char;  // Output: Ἒ

Ruby:

char = "\u{1F1A}"
puts char  # Output: Ἒ

Rust:

let c = '\u{1F1A}';
println!("{}", c);  // Output: Ἒ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001F1A";  /* Display: Ἒ */
}

HTML Decimal:

<p>HTML decimal: &#7962;</p>  <!-- Display: Ἒ -->

HTML Hexadecimal:

<p>HTML hex: &#x1F1A;</p>  <!-- Display: Ἒ -->

URL Encoding:

// Ἒ URL encoding
https://unicodefinder.com/search.php?query=%E1%BC%9A

Encodings

MD5:

7f3ce533f0241d537e58118151044ee6

SHA1:

9de3fcc2fff9714ba6f5f61e33ce66eb05229cdb

Base64:

4bya