Unicode Finder

"ὓ" U+1F53(GREEK SMALL LETTER UPSILON WITH DASIA AND VARIA)

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

Programming

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

Web

CSS
\001F53
HtmlDecimal
ὓ
HtmlHexadecimal
ὓ
Url
%E1%BD%93

Code

MD5
1cda3281ae56e4e4b2db5e570ca276ce
Sha1
a2d1f689289509e80faa92e00ec0ffb5dd8d9e4c
Base64
4b2T

Ví dụ Sử dụng

Programming Languages

C:

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

JavaScript:

const char = '\u1F53';
console.log(char);  // Output: ὓ

Java:

char c = '\u1F53';
System.out.println(c);  // Output: ὓ

JSON:

{"text": "\u1F53"}  // Value: ὓ

Python:

char = '\u1F53'
print(char)  # Output: ὓ

Perl:

my $char = "\x{1F53}";
print $char;  # Output: ὓ

PHP:

$char = "\x{1F53}";
echo $char;  // Output: ὓ

Ruby:

char = "\u{1F53}"
puts char  # Output: ὓ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#8019;</p>  <!-- Display: ὓ -->

HTML Hexadecimal:

<p>HTML hex: &#x1F53;</p>  <!-- Display: ὓ -->

URL Encoding:

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

Encodings

MD5:

1cda3281ae56e4e4b2db5e570ca276ce

SHA1:

a2d1f689289509e80faa92e00ec0ffb5dd8d9e4c

Base64:

4b2T