Unicode Finder

"ⳉ" U+2CC9(COPTIC SMALL LETTER AKHMIMIC KHEI)

U+2CC9
Block Name
Coptic
Name
COPTIC SMALL LETTER AKHMIMIC KHEI

Programming

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

Web

CSS
\002CC9
HtmlDecimal
ⳉ
HtmlHexadecimal
ⳉ
Url
%E2%B3%89

Code

MD5
6e6b717dfa3be454fc43a18e1a71305b
Sha1
38337ceed63035e04c410c5955becd8c3ef082a6
Base64
4rOJ

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2CC9';
console.log(char);  // Output: ⳉ

Java:

char c = '\u2CC9';
System.out.println(c);  // Output: ⳉ

JSON:

{"text": "\u2CC9"}  // Value: ⳉ

Python:

char = '\u2CC9'
print(char)  # Output: ⳉ

Perl:

my $char = "\x{2CC9}";
print $char;  # Output: ⳉ

PHP:

$char = "\x{2CC9}";
echo $char;  // Output: ⳉ

Ruby:

char = "\u{2CC9}"
puts char  # Output: ⳉ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11465;</p>  <!-- Display: ⳉ -->

HTML Hexadecimal:

<p>HTML hex: &#x2CC9;</p>  <!-- Display: ⳉ -->

URL Encoding:

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

Encodings

MD5:

6e6b717dfa3be454fc43a18e1a71305b

SHA1:

38337ceed63035e04c410c5955becd8c3ef082a6

Base64:

4rOJ