Unicode Finder

"Ⳇ" U+2CC6(COPTIC CAPITAL LETTER OLD COPTIC ESH)

U+2CC6
Block Name
Coptic
Name
COPTIC CAPITAL LETTER OLD COPTIC ESH

Programming

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

Web

CSS
\002CC6
HtmlDecimal
Ⳇ
HtmlHexadecimal
Ⳇ
Url
%E2%B3%86

Code

MD5
3da84d624b0296cbe8db7264d30911b6
Sha1
7e6fc8a73cd881c7974443cda12fd45d56adff30
Base64
4rOG

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2CC6';
console.log(char);  // Output: Ⳇ

Java:

char c = '\u2CC6';
System.out.println(c);  // Output: Ⳇ

JSON:

{"text": "\u2CC6"}  // Value: Ⳇ

Python:

char = '\u2CC6'
print(char)  # Output: Ⳇ

Perl:

my $char = "\x{2CC6}";
print $char;  # Output: Ⳇ

PHP:

$char = "\x{2CC6}";
echo $char;  // Output: Ⳇ

Ruby:

char = "\u{2CC6}"
puts char  # Output: Ⳇ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11462;</p>  <!-- Display: Ⳇ -->

HTML Hexadecimal:

<p>HTML hex: &#x2CC6;</p>  <!-- Display: Ⳇ -->

URL Encoding:

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

Encodings

MD5:

3da84d624b0296cbe8db7264d30911b6

SHA1:

7e6fc8a73cd881c7974443cda12fd45d56adff30

Base64:

4rOG