Unicode Finder

"ῼ" U+1FFC(GREEK CAPITAL LETTER OMEGA WITH PROSGEGRAMMENI)

U+1FFC
Tên Khối
Greek Extended
Tên
GREEK CAPITAL LETTER OMEGA WITH PROSGEGRAMMENI

Programming

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

Web

CSS
\001FFC
HtmlDecimal
ῼ
HtmlHexadecimal
ῼ
Url
%E1%BF%BC

Code

MD5
b9a8e5902706b53468a0dded70354e44
Sha1
ad060ac414f654788e0c68d0016a0e9a9ac0550c
Base64
4b+8

Ví dụ Sử dụng

Programming Languages

C:

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

JavaScript:

const char = '\u1FFC';
console.log(char);  // Output: ῼ

Java:

char c = '\u1FFC';
System.out.println(c);  // Output: ῼ

JSON:

{"text": "\u1FFC"}  // Value: ῼ

Python:

char = '\u1FFC'
print(char)  # Output: ῼ

Perl:

my $char = "\x{1FFC}";
print $char;  # Output: ῼ

PHP:

$char = "\x{1FFC}";
echo $char;  // Output: ῼ

Ruby:

char = "\u{1FFC}"
puts char  # Output: ῼ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#8188;</p>  <!-- Display: ῼ -->

HTML Hexadecimal:

<p>HTML hex: &#x1FFC;</p>  <!-- Display: ῼ -->

URL Encoding:

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

Encodings

MD5:

b9a8e5902706b53468a0dded70354e44

SHA1:

ad060ac414f654788e0c68d0016a0e9a9ac0550c

Base64:

4b+8