Unicode Finder

"ὺ" U+1F7A(GREEK SMALL LETTER UPSILON WITH VARIA)

U+1F7A
Tên Khối
Greek Extended
Tên
GREEK SMALL LETTER UPSILON WITH VARIA

Programming

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

Web

CSS
\001F7A
HtmlDecimal
ὺ
HtmlHexadecimal
ὺ
Url
%E1%BD%BA

Code

MD5
79360f6ff91eadc0481dae5d6d97d765
Sha1
18149eb61dafb8a569579d63d2892edac7031fba
Base64
4b26

Ví dụ Sử dụng

Programming Languages

C:

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

JavaScript:

const char = '\u1F7A';
console.log(char);  // Output: ὺ

Java:

char c = '\u1F7A';
System.out.println(c);  // Output: ὺ

JSON:

{"text": "\u1F7A"}  // Value: ὺ

Python:

char = '\u1F7A'
print(char)  # Output: ὺ

Perl:

my $char = "\x{1F7A}";
print $char;  # Output: ὺ

PHP:

$char = "\x{1F7A}";
echo $char;  // Output: ὺ

Ruby:

char = "\u{1F7A}"
puts char  # Output: ὺ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#8058;</p>  <!-- Display: ὺ -->

HTML Hexadecimal:

<p>HTML hex: &#x1F7A;</p>  <!-- Display: ὺ -->

URL Encoding:

// ὺ URL encoding
https://unicodefinder.com/search.php?query=%E1%BD%BA

Encodings

MD5:

79360f6ff91eadc0481dae5d6d97d765

SHA1:

18149eb61dafb8a569579d63d2892edac7031fba

Base64:

4b26