Unicode Finder

"ⲋ" U+2C8B(COPTIC SMALL LETTER SOU)

U+2C8B
Block Name
Coptic
Name
COPTIC SMALL LETTER SOU

Programming

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

Web

CSS
\002C8B
HtmlDecimal
ⲋ
HtmlHexadecimal
ⲋ
Url
%E2%B2%8B

Code

MD5
5851d288591af29f5aef379c304e43ca
Sha1
4419acef5fe3f80336da59a9cadcdee4a065c91d
Base64
4rKL

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2C8B';
console.log(char);  // Output: ⲋ

Java:

char c = '\u2C8B';
System.out.println(c);  // Output: ⲋ

JSON:

{"text": "\u2C8B"}  // Value: ⲋ

Python:

char = '\u2C8B'
print(char)  # Output: ⲋ

Perl:

my $char = "\x{2C8B}";
print $char;  # Output: ⲋ

PHP:

$char = "\x{2C8B}";
echo $char;  // Output: ⲋ

Ruby:

char = "\u{2C8B}"
puts char  # Output: ⲋ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11403;</p>  <!-- Display: ⲋ -->

HTML Hexadecimal:

<p>HTML hex: &#x2C8B;</p>  <!-- Display: ⲋ -->

URL Encoding:

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

Encodings

MD5:

5851d288591af29f5aef379c304e43ca

SHA1:

4419acef5fe3f80336da59a9cadcdee4a065c91d

Base64:

4rKL