Unicode Finder

"ⲿ" U+2CBF(COPTIC SMALL LETTER OLD COPTIC OOU)

ⲿ
U+2CBF
Block Name
Coptic
Name
COPTIC SMALL LETTER OLD COPTIC OOU

Programming

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

Web

CSS
\002CBF
HtmlDecimal
ⲿ
HtmlHexadecimal
ⲿ
Url
%E2%B2%BF

Code

MD5
b0b56cb4d3abc2891bc7ca9fcbde3faa
Sha1
e756be40b44b2c4c3dd63abcd80165d07da7ee94
Base64
4rK/

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2CBF';
console.log(char);  // Output: ⲿ

Java:

char c = '\u2CBF';
System.out.println(c);  // Output: ⲿ

JSON:

{"text": "\u2CBF"}  // Value: ⲿ

Python:

char = '\u2CBF'
print(char)  # Output: ⲿ

Perl:

my $char = "\x{2CBF}";
print $char;  # Output: ⲿ

PHP:

$char = "\x{2CBF}";
echo $char;  // Output: ⲿ

Ruby:

char = "\u{2CBF}"
puts char  # Output: ⲿ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11455;</p>  <!-- Display: ⲿ -->

HTML Hexadecimal:

<p>HTML hex: &#x2CBF;</p>  <!-- Display: ⲿ -->

URL Encoding:

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

Encodings

MD5:

b0b56cb4d3abc2891bc7ca9fcbde3faa

SHA1:

e756be40b44b2c4c3dd63abcd80165d07da7ee94

Base64:

4rK/