Unicode Finder

"ⲭ" U+2CAD(COPTIC SMALL LETTER KHI)

U+2CAD
Block Name
Coptic
Name
COPTIC SMALL LETTER KHI

Programming

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

Web

CSS
\002CAD
HtmlDecimal
ⲭ
HtmlHexadecimal
ⲭ
Url
%E2%B2%AD

Code

MD5
18a998b63e0d102748917bc9bfb8399c
Sha1
c1164f772406b88e966ca9cd4e511fdf1008cc6f
Base64
4rKt

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2CAD';
console.log(char);  // Output: ⲭ

Java:

char c = '\u2CAD';
System.out.println(c);  // Output: ⲭ

JSON:

{"text": "\u2CAD"}  // Value: ⲭ

Python:

char = '\u2CAD'
print(char)  # Output: ⲭ

Perl:

my $char = "\x{2CAD}";
print $char;  # Output: ⲭ

PHP:

$char = "\x{2CAD}";
echo $char;  // Output: ⲭ

Ruby:

char = "\u{2CAD}"
puts char  # Output: ⲭ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11437;</p>  <!-- Display: ⲭ -->

HTML Hexadecimal:

<p>HTML hex: &#x2CAD;</p>  <!-- Display: ⲭ -->

URL Encoding:

// ⲭ URL encoding
https://unicodefinder.com/search.php?query=%E2%B2%AD

Encodings

MD5:

18a998b63e0d102748917bc9bfb8399c

SHA1:

c1164f772406b88e966ca9cd4e511fdf1008cc6f

Base64:

4rKt