Unicode Finder

"ⲏ" U+2C8F(COPTIC SMALL LETTER HATE)

U+2C8F
Block Name
Coptic
Name
COPTIC SMALL LETTER HATE

Programming

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

Web

CSS
\002C8F
HtmlDecimal
ⲏ
HtmlHexadecimal
ⲏ
Url
%E2%B2%8F

Code

MD5
331c1289a44e9f76bb478572eb832dfc
Sha1
b888013d4f64cfc517d9d75816fe0c4a582edcbb
Base64
4rKP

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2C8F';
console.log(char);  // Output: ⲏ

Java:

char c = '\u2C8F';
System.out.println(c);  // Output: ⲏ

JSON:

{"text": "\u2C8F"}  // Value: ⲏ

Python:

char = '\u2C8F'
print(char)  # Output: ⲏ

Perl:

my $char = "\x{2C8F}";
print $char;  # Output: ⲏ

PHP:

$char = "\x{2C8F}";
echo $char;  // Output: ⲏ

Ruby:

char = "\u{2C8F}"
puts char  # Output: ⲏ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11407;</p>  <!-- Display: ⲏ -->

HTML Hexadecimal:

<p>HTML hex: &#x2C8F;</p>  <!-- Display: ⲏ -->

URL Encoding:

// ⲏ URL encoding
https://unicodefinder.com/search.php?query=%E2%B2%8F

Encodings

MD5:

331c1289a44e9f76bb478572eb832dfc

SHA1:

b888013d4f64cfc517d9d75816fe0c4a582edcbb

Base64:

4rKP