Unicode Finder

"ⲟ" U+2C9F(COPTIC SMALL LETTER O)

U+2C9F
Block Name
Coptic
Name
COPTIC SMALL LETTER O

Programming

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

Web

CSS
\002C9F
HtmlDecimal
ⲟ
HtmlHexadecimal
ⲟ
Url
%E2%B2%9F

Code

MD5
3513494d5f160dffe530b4f7af4fccae
Sha1
21b8ec1c90654385389e4fa852c6d0d71c9a1a94
Base64
4rKf

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2C9F';
console.log(char);  // Output: ⲟ

Java:

char c = '\u2C9F';
System.out.println(c);  // Output: ⲟ

JSON:

{"text": "\u2C9F"}  // Value: ⲟ

Python:

char = '\u2C9F'
print(char)  # Output: ⲟ

Perl:

my $char = "\x{2C9F}";
print $char;  # Output: ⲟ

PHP:

$char = "\x{2C9F}";
echo $char;  // Output: ⲟ

Ruby:

char = "\u{2C9F}"
puts char  # Output: ⲟ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11423;</p>  <!-- Display: ⲟ -->

HTML Hexadecimal:

<p>HTML hex: &#x2C9F;</p>  <!-- Display: ⲟ -->

URL Encoding:

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

Encodings

MD5:

3513494d5f160dffe530b4f7af4fccae

SHA1:

21b8ec1c90654385389e4fa852c6d0d71c9a1a94

Base64:

4rKf