Unicode Finder

"ὼ" U+1F7C(GREEK SMALL LETTER OMEGA WITH VARIA)

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

Programming

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

Web

CSS
\001F7C
HtmlDecimal
ὼ
HtmlHexadecimal
ὼ
Url
%E1%BD%BC

Code

MD5
88c89ce74c220b53487b3cd755a77da3
Sha1
d785d006cdfdb089f40d9a76cad15c0198ab05fb
Base64
4b28

Ví dụ Sử dụng

Programming Languages

C:

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

JavaScript:

const char = '\u1F7C';
console.log(char);  // Output: ὼ

Java:

char c = '\u1F7C';
System.out.println(c);  // Output: ὼ

JSON:

{"text": "\u1F7C"}  // Value: ὼ

Python:

char = '\u1F7C'
print(char)  # Output: ὼ

Perl:

my $char = "\x{1F7C}";
print $char;  # Output: ὼ

PHP:

$char = "\x{1F7C}";
echo $char;  // Output: ὼ

Ruby:

char = "\u{1F7C}"
puts char  # Output: ὼ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#8060;</p>  <!-- Display: ὼ -->

HTML Hexadecimal:

<p>HTML hex: &#x1F7C;</p>  <!-- Display: ὼ -->

URL Encoding:

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

Encodings

MD5:

88c89ce74c220b53487b3cd755a77da3

SHA1:

d785d006cdfdb089f40d9a76cad15c0198ab05fb

Base64:

4b28