Unicode Finder

"ὥ" U+1F65(GREEK SMALL LETTER OMEGA WITH DASIA AND OXIA)

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

Programming

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

Web

CSS
\001F65
HtmlDecimal
ὥ
HtmlHexadecimal
ὥ
Url
%E1%BD%A5

Code

MD5
0cda7ef9461606884a73b5d228f324fe
Sha1
006a2efa5472c9a757c565aad9a59cd3a74df25a
Base64
4b2l

Ví dụ Sử dụng

Programming Languages

C:

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

JavaScript:

const char = '\u1F65';
console.log(char);  // Output: ὥ

Java:

char c = '\u1F65';
System.out.println(c);  // Output: ὥ

JSON:

{"text": "\u1F65"}  // Value: ὥ

Python:

char = '\u1F65'
print(char)  # Output: ὥ

Perl:

my $char = "\x{1F65}";
print $char;  # Output: ὥ

PHP:

$char = "\x{1F65}";
echo $char;  // Output: ὥ

Ruby:

char = "\u{1F65}"
puts char  # Output: ὥ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#8037;</p>  <!-- Display: ὥ -->

HTML Hexadecimal:

<p>HTML hex: &#x1F65;</p>  <!-- Display: ὥ -->

URL Encoding:

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

Encodings

MD5:

0cda7ef9461606884a73b5d228f324fe

SHA1:

006a2efa5472c9a757c565aad9a59cd3a74df25a

Base64:

4b2l