Unicode Finder

"ⲉ" U+2C89(COPTIC SMALL LETTER EIE)

U+2C89
Block Name
Coptic
Name
COPTIC SMALL LETTER EIE

Programming

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

Web

CSS
\002C89
HtmlDecimal
ⲉ
HtmlHexadecimal
ⲉ
Url
%E2%B2%89

Code

MD5
9df2a62ed3e46d7b3186a5c34c2eab07
Sha1
d64bd77fc130957e3a7a856822537fcd36f918e2
Base64
4rKJ

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2C89';
console.log(char);  // Output: ⲉ

Java:

char c = '\u2C89';
System.out.println(c);  // Output: ⲉ

JSON:

{"text": "\u2C89"}  // Value: ⲉ

Python:

char = '\u2C89'
print(char)  # Output: ⲉ

Perl:

my $char = "\x{2C89}";
print $char;  # Output: ⲉ

PHP:

$char = "\x{2C89}";
echo $char;  // Output: ⲉ

Ruby:

char = "\u{2C89}"
puts char  # Output: ⲉ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11401;</p>  <!-- Display: ⲉ -->

HTML Hexadecimal:

<p>HTML hex: &#x2C89;</p>  <!-- Display: ⲉ -->

URL Encoding:

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

Encodings

MD5:

9df2a62ed3e46d7b3186a5c34c2eab07

SHA1:

d64bd77fc130957e3a7a856822537fcd36f918e2

Base64:

4rKJ