Unicode Finder

"Ⳅ" U+2CC4(COPTIC CAPITAL LETTER OLD COPTIC SHEI)

U+2CC4
Block Name
Coptic
Name
COPTIC CAPITAL LETTER OLD COPTIC SHEI

Programming

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

Web

CSS
\002CC4
HtmlDecimal
Ⳅ
HtmlHexadecimal
Ⳅ
Url
%E2%B3%84

Code

MD5
bae873b02fe6a83928f4bfc0c4b8388d
Sha1
1cdca7c6d08c1d4e1e5c152e2cbd33cf1a42a0f4
Base64
4rOE

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2CC4';
console.log(char);  // Output: Ⳅ

Java:

char c = '\u2CC4';
System.out.println(c);  // Output: Ⳅ

JSON:

{"text": "\u2CC4"}  // Value: Ⳅ

Python:

char = '\u2CC4'
print(char)  # Output: Ⳅ

Perl:

my $char = "\x{2CC4}";
print $char;  # Output: Ⳅ

PHP:

$char = "\x{2CC4}";
echo $char;  // Output: Ⳅ

Ruby:

char = "\u{2CC4}"
puts char  # Output: Ⳅ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11460;</p>  <!-- Display: Ⳅ -->

HTML Hexadecimal:

<p>HTML hex: &#x2CC4;</p>  <!-- Display: Ⳅ -->

URL Encoding:

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

Encodings

MD5:

bae873b02fe6a83928f4bfc0c4b8388d

SHA1:

1cdca7c6d08c1d4e1e5c152e2cbd33cf1a42a0f4

Base64:

4rOE