Unicode Finder

"ῃ" U+1FC3(GREEK SMALL LETTER ETA WITH YPOGEGRAMMENI)

U+1FC3
Tên Khối
Greek Extended
Tên
GREEK SMALL LETTER ETA WITH YPOGEGRAMMENI

Programming

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

Web

CSS
\001FC3
HtmlDecimal
ῃ
HtmlHexadecimal
ῃ
Url
%E1%BF%83

Code

MD5
fc70e82b6916a10d67b3a617daca2090
Sha1
8b41072df9e74e2c5611fdc3bfb5d04306450402
Base64
4b+D

Ví dụ Sử dụng

Programming Languages

C:

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

JavaScript:

const char = '\u1FC3';
console.log(char);  // Output: ῃ

Java:

char c = '\u1FC3';
System.out.println(c);  // Output: ῃ

JSON:

{"text": "\u1FC3"}  // Value: ῃ

Python:

char = '\u1FC3'
print(char)  # Output: ῃ

Perl:

my $char = "\x{1FC3}";
print $char;  # Output: ῃ

PHP:

$char = "\x{1FC3}";
echo $char;  // Output: ῃ

Ruby:

char = "\u{1FC3}"
puts char  # Output: ῃ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#8131;</p>  <!-- Display: ῃ -->

HTML Hexadecimal:

<p>HTML hex: &#x1FC3;</p>  <!-- Display: ῃ -->

URL Encoding:

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

Encodings

MD5:

fc70e82b6916a10d67b3a617daca2090

SHA1:

8b41072df9e74e2c5611fdc3bfb5d04306450402

Base64:

4b+D