Unicode Finder

"ⳤ" U+2CE4(COPTIC SYMBOL KAI)

U+2CE4
Block Name
Coptic
Name
COPTIC SYMBOL KAI

Programming

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

Web

CSS
\002CE4
HtmlDecimal
ⳤ
HtmlHexadecimal
ⳤ
Url
%E2%B3%A4

Code

MD5
d4b9a8489e585960c669aba7544a0f9f
Sha1
4a21b569c7cd7dc5d59bfb1bf0d0438395c5eec8
Base64
4rOk

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2CE4';
console.log(char);  // Output: ⳤ

Java:

char c = '\u2CE4';
System.out.println(c);  // Output: ⳤ

JSON:

{"text": "\u2CE4"}  // Value: ⳤ

Python:

char = '\u2CE4'
print(char)  # Output: ⳤ

Perl:

my $char = "\x{2CE4}";
print $char;  # Output: ⳤ

PHP:

$char = "\x{2CE4}";
echo $char;  // Output: ⳤ

Ruby:

char = "\u{2CE4}"
puts char  # Output: ⳤ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11492;</p>  <!-- Display: ⳤ -->

HTML Hexadecimal:

<p>HTML hex: &#x2CE4;</p>  <!-- Display: ⳤ -->

URL Encoding:

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

Encodings

MD5:

d4b9a8489e585960c669aba7544a0f9f

SHA1:

4a21b569c7cd7dc5d59bfb1bf0d0438395c5eec8

Base64:

4rOk