Unicode Finder

"ⳍ" U+2CCD(COPTIC SMALL LETTER OLD COPTIC HORI)

U+2CCD
Block Name
Coptic
Name
COPTIC SMALL LETTER OLD COPTIC HORI

Programming

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

Web

CSS
\002CCD
HtmlDecimal
ⳍ
HtmlHexadecimal
ⳍ
Url
%E2%B3%8D

Code

MD5
9306453232e04a62205f979c7aaeaed6
Sha1
b22d5d30c779221d94e6e81d9248570eae9fbffb
Base64
4rON

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2CCD';
console.log(char);  // Output: ⳍ

Java:

char c = '\u2CCD';
System.out.println(c);  // Output: ⳍ

JSON:

{"text": "\u2CCD"}  // Value: ⳍ

Python:

char = '\u2CCD'
print(char)  # Output: ⳍ

Perl:

my $char = "\x{2CCD}";
print $char;  # Output: ⳍ

PHP:

$char = "\x{2CCD}";
echo $char;  // Output: ⳍ

Ruby:

char = "\u{2CCD}"
puts char  # Output: ⳍ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11469;</p>  <!-- Display: ⳍ -->

HTML Hexadecimal:

<p>HTML hex: &#x2CCD;</p>  <!-- Display: ⳍ -->

URL Encoding:

// ⳍ URL encoding
https://unicodefinder.com/search.php?query=%E2%B3%8D

Encodings

MD5:

9306453232e04a62205f979c7aaeaed6

SHA1:

b22d5d30c779221d94e6e81d9248570eae9fbffb

Base64:

4rON