Unicode Finder

"ἧ" U+1F27(GREEK SMALL LETTER ETA WITH DASIA AND PERISPOMENI)

U+1F27
Tên Khối
Greek Extended
Tên
GREEK SMALL LETTER ETA WITH DASIA AND PERISPOMENI

Programming

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

Web

CSS
\001F27
HtmlDecimal
ἧ
HtmlHexadecimal
ἧ
Url
%E1%BC%A7

Code

MD5
5574f1a776ce0a526fab92a6bdcefb64
Sha1
7b00c1952a771c536a135bd5675e8966d6128900
Base64
4byn

Ví dụ Sử dụng

Programming Languages

C:

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

JavaScript:

const char = '\u1F27';
console.log(char);  // Output: ἧ

Java:

char c = '\u1F27';
System.out.println(c);  // Output: ἧ

JSON:

{"text": "\u1F27"}  // Value: ἧ

Python:

char = '\u1F27'
print(char)  # Output: ἧ

Perl:

my $char = "\x{1F27}";
print $char;  # Output: ἧ

PHP:

$char = "\x{1F27}";
echo $char;  // Output: ἧ

Ruby:

char = "\u{1F27}"
puts char  # Output: ἧ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7975;</p>  <!-- Display: ἧ -->

HTML Hexadecimal:

<p>HTML hex: &#x1F27;</p>  <!-- Display: ἧ -->

URL Encoding:

// ἧ URL encoding
https://unicodefinder.com/search.php?query=%E1%BC%A7

Encodings

MD5:

5574f1a776ce0a526fab92a6bdcefb64

SHA1:

7b00c1952a771c536a135bd5675e8966d6128900

Base64:

4byn