Unicode Finder

"Ⳋ" U+2CCA(COPTIC CAPITAL LETTER DIALECT-P HORI)

U+2CCA
Block Name
Coptic
Name
COPTIC CAPITAL LETTER DIALECT-P HORI

Programming

C
\u2CCA
JavaScript
\u2CCA
Java
\u2CCA
Json
\u2CCA
Python
\u2CCA
Perl
\x{2CCA}
PHP
\x{2CCA}
Ruby
\u{2CCA}
Rust
\u{2CCA}
Go
\u2CCA

Web

CSS
\002CCA
HtmlDecimal
Ⳋ
HtmlHexadecimal
Ⳋ
Url
%E2%B3%8A

Code

MD5
959bdd4f3c0b131334d8ae7803a62707
Sha1
dc856d2f43aa57e349713c252e0e4d50068b62f4
Base64
4rOK

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2CCA';
console.log(char);  // Output: Ⳋ

Java:

char c = '\u2CCA';
System.out.println(c);  // Output: Ⳋ

JSON:

{"text": "\u2CCA"}  // Value: Ⳋ

Python:

char = '\u2CCA'
print(char)  # Output: Ⳋ

Perl:

my $char = "\x{2CCA}";
print $char;  # Output: Ⳋ

PHP:

$char = "\x{2CCA}";
echo $char;  // Output: Ⳋ

Ruby:

char = "\u{2CCA}"
puts char  # Output: Ⳋ

Rust:

let c = '\u{2CCA}';
println!("{}", c);  // Output: Ⳋ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002CCA";  /* Display: Ⳋ */
}

HTML Decimal:

<p>HTML decimal: &#11466;</p>  <!-- Display: Ⳋ -->

HTML Hexadecimal:

<p>HTML hex: &#x2CCA;</p>  <!-- Display: Ⳋ -->

URL Encoding:

// Ⳋ URL encoding
https://unicodefinder.com/search.php?query=%E2%B3%8A

Encodings

MD5:

959bdd4f3c0b131334d8ae7803a62707

SHA1:

dc856d2f43aa57e349713c252e0e4d50068b62f4

Base64:

4rOK