Unicode Finder

"Ⲗ" U+2C96(COPTIC CAPITAL LETTER LAULA)

U+2C96
Block Name
Coptic
Name
COPTIC CAPITAL LETTER LAULA

Programming

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

Web

CSS
\002C96
HtmlDecimal
Ⲗ
HtmlHexadecimal
Ⲗ
Url
%E2%B2%96

Code

MD5
3974b430439e2c8616a0c8718c32da88
Sha1
faf2f5fd24e94453570553d4ed7032f7de63a24b
Base64
4rKW

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2C96';
console.log(char);  // Output: Ⲗ

Java:

char c = '\u2C96';
System.out.println(c);  // Output: Ⲗ

JSON:

{"text": "\u2C96"}  // Value: Ⲗ

Python:

char = '\u2C96'
print(char)  # Output: Ⲗ

Perl:

my $char = "\x{2C96}";
print $char;  # Output: Ⲗ

PHP:

$char = "\x{2C96}";
echo $char;  // Output: Ⲗ

Ruby:

char = "\u{2C96}"
puts char  # Output: Ⲗ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11414;</p>  <!-- Display: Ⲗ -->

HTML Hexadecimal:

<p>HTML hex: &#x2C96;</p>  <!-- Display: Ⲗ -->

URL Encoding:

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

Encodings

MD5:

3974b430439e2c8616a0c8718c32da88

SHA1:

faf2f5fd24e94453570553d4ed7032f7de63a24b

Base64:

4rKW