Unicode Finder

"ῶ" U+1FF6(GREEK SMALL LETTER OMEGA WITH PERISPOMENI)

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

Programming

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

Web

CSS
\001FF6
HtmlDecimal
ῶ
HtmlHexadecimal
ῶ
Url
%E1%BF%B6

Code

MD5
e7655d4f4e84ead2a4f750f1f821294d
Sha1
a33b898560a0f1c716fa43bfb784e11cb2cbb7c3
Base64
4b+2

Ví dụ Sử dụng

Programming Languages

C:

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

JavaScript:

const char = '\u1FF6';
console.log(char);  // Output: ῶ

Java:

char c = '\u1FF6';
System.out.println(c);  // Output: ῶ

JSON:

{"text": "\u1FF6"}  // Value: ῶ

Python:

char = '\u1FF6'
print(char)  # Output: ῶ

Perl:

my $char = "\x{1FF6}";
print $char;  # Output: ῶ

PHP:

$char = "\x{1FF6}";
echo $char;  // Output: ῶ

Ruby:

char = "\u{1FF6}"
puts char  # Output: ῶ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#8182;</p>  <!-- Display: ῶ -->

HTML Hexadecimal:

<p>HTML hex: &#x1FF6;</p>  <!-- Display: ῶ -->

URL Encoding:

// ῶ URL encoding
https://unicodefinder.com/search.php?query=%E1%BF%B6

Encodings

MD5:

e7655d4f4e84ead2a4f750f1f821294d

SHA1:

a33b898560a0f1c716fa43bfb784e11cb2cbb7c3

Base64:

4b+2