Unicode Finder

"ⳬ" U+2CEC(COPTIC SMALL LETTER CRYPTOGRAMMIC SHEI)

U+2CEC
Block Name
Coptic
Name
COPTIC SMALL LETTER CRYPTOGRAMMIC SHEI

Programming

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

Web

CSS
\002CEC
HtmlDecimal
ⳬ
HtmlHexadecimal
ⳬ
Url
%E2%B3%AC

Code

MD5
c32ab1ad0ffe1ba631e193c3a3334208
Sha1
8b7e6f1c3b120d838e39c1027575ff070c1715bf
Base64
4rOs

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2CEC';
console.log(char);  // Output: ⳬ

Java:

char c = '\u2CEC';
System.out.println(c);  // Output: ⳬ

JSON:

{"text": "\u2CEC"}  // Value: ⳬ

Python:

char = '\u2CEC'
print(char)  # Output: ⳬ

Perl:

my $char = "\x{2CEC}";
print $char;  # Output: ⳬ

PHP:

$char = "\x{2CEC}";
echo $char;  // Output: ⳬ

Ruby:

char = "\u{2CEC}"
puts char  # Output: ⳬ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11500;</p>  <!-- Display: ⳬ -->

HTML Hexadecimal:

<p>HTML hex: &#x2CEC;</p>  <!-- Display: ⳬ -->

URL Encoding:

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

Encodings

MD5:

c32ab1ad0ffe1ba631e193c3a3334208

SHA1:

8b7e6f1c3b120d838e39c1027575ff070c1715bf

Base64:

4rOs