Unicode Finder

"ⲳ" U+2CB3(COPTIC SMALL LETTER DIALECT-P ALEF)

U+2CB3
Block Name
Coptic
Name
COPTIC SMALL LETTER DIALECT-P ALEF

Programming

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

Web

CSS
\002CB3
HtmlDecimal
ⲳ
HtmlHexadecimal
ⲳ
Url
%E2%B2%B3

Code

MD5
54aa99539307992045c761d1ee6d750d
Sha1
059499a04777ff3761ed7acfd41eff682708a45b
Base64
4rKz

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2CB3';
console.log(char);  // Output: ⲳ

Java:

char c = '\u2CB3';
System.out.println(c);  // Output: ⲳ

JSON:

{"text": "\u2CB3"}  // Value: ⲳ

Python:

char = '\u2CB3'
print(char)  # Output: ⲳ

Perl:

my $char = "\x{2CB3}";
print $char;  # Output: ⲳ

PHP:

$char = "\x{2CB3}";
echo $char;  // Output: ⲳ

Ruby:

char = "\u{2CB3}"
puts char  # Output: ⲳ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11443;</p>  <!-- Display: ⲳ -->

HTML Hexadecimal:

<p>HTML hex: &#x2CB3;</p>  <!-- Display: ⲳ -->

URL Encoding:

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

Encodings

MD5:

54aa99539307992045c761d1ee6d750d

SHA1:

059499a04777ff3761ed7acfd41eff682708a45b

Base64:

4rKz