Unicode Finder

"Ὲ" U+1FC8(GREEK CAPITAL LETTER EPSILON WITH VARIA)

U+1FC8
Tên Khối
Greek Extended
Tên
GREEK CAPITAL LETTER EPSILON WITH VARIA

Programming

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

Web

CSS
\001FC8
HtmlDecimal
Ὲ
HtmlHexadecimal
Ὲ
Url
%E1%BF%88

Code

MD5
8eb2d70cd5885e0ea389e149f0be5d30
Sha1
1d2a4d4ef176be05277a0d29f7f8c6589de874f7
Base64
4b+I

Ví dụ Sử dụng

Programming Languages

C:

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

JavaScript:

const char = '\u1FC8';
console.log(char);  // Output: Ὲ

Java:

char c = '\u1FC8';
System.out.println(c);  // Output: Ὲ

JSON:

{"text": "\u1FC8"}  // Value: Ὲ

Python:

char = '\u1FC8'
print(char)  # Output: Ὲ

Perl:

my $char = "\x{1FC8}";
print $char;  # Output: Ὲ

PHP:

$char = "\x{1FC8}";
echo $char;  // Output: Ὲ

Ruby:

char = "\u{1FC8}"
puts char  # Output: Ὲ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#8136;</p>  <!-- Display: Ὲ -->

HTML Hexadecimal:

<p>HTML hex: &#x1FC8;</p>  <!-- Display: Ὲ -->

URL Encoding:

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

Encodings

MD5:

8eb2d70cd5885e0ea389e149f0be5d30

SHA1:

1d2a4d4ef176be05277a0d29f7f8c6589de874f7

Base64:

4b+I