Unicode Finder

"Ⲳ" U+2CB2(COPTIC CAPITAL LETTER DIALECT-P ALEF)

U+2CB2
Block Name
Coptic
Name
COPTIC CAPITAL LETTER DIALECT-P ALEF

Programming

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

Web

CSS
\002CB2
HtmlDecimal
Ⲳ
HtmlHexadecimal
Ⲳ
Url
%E2%B2%B2

Code

MD5
6950368126ff7419a6be3b1d4eebc9ef
Sha1
49332129da65c505bd4c246afc00ab4a17252142
Base64
4rKy

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2CB2';
console.log(char);  // Output: Ⲳ

Java:

char c = '\u2CB2';
System.out.println(c);  // Output: Ⲳ

JSON:

{"text": "\u2CB2"}  // Value: Ⲳ

Python:

char = '\u2CB2'
print(char)  # Output: Ⲳ

Perl:

my $char = "\x{2CB2}";
print $char;  # Output: Ⲳ

PHP:

$char = "\x{2CB2}";
echo $char;  // Output: Ⲳ

Ruby:

char = "\u{2CB2}"
puts char  # Output: Ⲳ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11442;</p>  <!-- Display: Ⲳ -->

HTML Hexadecimal:

<p>HTML hex: &#x2CB2;</p>  <!-- Display: Ⲳ -->

URL Encoding:

// Ⲳ URL encoding
https://unicodefinder.com/search.php?query=%E2%B2%B2

Encodings

MD5:

6950368126ff7419a6be3b1d4eebc9ef

SHA1:

49332129da65c505bd4c246afc00ab4a17252142

Base64:

4rKy