Unicode Finder

"ᾝ" U+1F9D(GREEK CAPITAL LETTER ETA WITH DASIA AND OXIA AND PROSGEGRAMMENI)

U+1F9D
Tên Khối
Greek Extended
Tên
GREEK CAPITAL LETTER ETA WITH DASIA AND OXIA AND PROSGEGRAMMENI

Programming

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

Web

CSS
\001F9D
HtmlDecimal
ᾝ
HtmlHexadecimal
ᾝ
Url
%E1%BE%9D

Code

MD5
c15d6b3e57e0aa97fcb4565e5b7d17c7
Sha1
39e9e4fe449eca331f3996c3a99bbd1f64558a77
Base64
4b6d

Ví dụ Sử dụng

Programming Languages

C:

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

JavaScript:

const char = '\u1F9D';
console.log(char);  // Output: ᾝ

Java:

char c = '\u1F9D';
System.out.println(c);  // Output: ᾝ

JSON:

{"text": "\u1F9D"}  // Value: ᾝ

Python:

char = '\u1F9D'
print(char)  # Output: ᾝ

Perl:

my $char = "\x{1F9D}";
print $char;  # Output: ᾝ

PHP:

$char = "\x{1F9D}";
echo $char;  // Output: ᾝ

Ruby:

char = "\u{1F9D}"
puts char  # Output: ᾝ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#8093;</p>  <!-- Display: ᾝ -->

HTML Hexadecimal:

<p>HTML hex: &#x1F9D;</p>  <!-- Display: ᾝ -->

URL Encoding:

// ᾝ URL encoding
https://unicodefinder.com/search.php?query=%E1%BE%9D

Encodings

MD5:

c15d6b3e57e0aa97fcb4565e5b7d17c7

SHA1:

39e9e4fe449eca331f3996c3a99bbd1f64558a77

Base64:

4b6d