Unicode Finder

"ὕ" U+1F55(GREEK SMALL LETTER UPSILON WITH DASIA AND OXIA)

U+1F55
Tên Khối
Greek Extended
Tên
GREEK SMALL LETTER UPSILON WITH DASIA AND OXIA

Programming

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

Web

CSS
\001F55
HtmlDecimal
ὕ
HtmlHexadecimal
ὕ
Url
%E1%BD%95

Code

MD5
e75a963f3a7d7beb513f92ae6434fa4f
Sha1
b7e4c3f02328082541f7ccad8187fa20ffeae901
Base64
4b2V

Ví dụ Sử dụng

Programming Languages

C:

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

JavaScript:

const char = '\u1F55';
console.log(char);  // Output: ὕ

Java:

char c = '\u1F55';
System.out.println(c);  // Output: ὕ

JSON:

{"text": "\u1F55"}  // Value: ὕ

Python:

char = '\u1F55'
print(char)  # Output: ὕ

Perl:

my $char = "\x{1F55}";
print $char;  # Output: ὕ

PHP:

$char = "\x{1F55}";
echo $char;  // Output: ὕ

Ruby:

char = "\u{1F55}"
puts char  # Output: ὕ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#8021;</p>  <!-- Display: ὕ -->

HTML Hexadecimal:

<p>HTML hex: &#x1F55;</p>  <!-- Display: ὕ -->

URL Encoding:

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

Encodings

MD5:

e75a963f3a7d7beb513f92ae6434fa4f

SHA1:

b7e4c3f02328082541f7ccad8187fa20ffeae901

Base64:

4b2V