Unicode Finder

"ⱁ" U+2C41(GLAGOLITIC SMALL LETTER ONU)

U+2C41
Block Name
Glagolitic
Name
GLAGOLITIC SMALL LETTER ONU

Programming

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

Web

CSS
\002C41
HtmlDecimal
ⱁ
HtmlHexadecimal
ⱁ
Url
%E2%B1%81

Code

MD5
8440507a197cce9fdf5fbe69cd820b6a
Sha1
3703dff1c348c7bcff6f5664948f3ea10889c4b5
Base64
4rGB

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2C41';
console.log(char);  // Output: ⱁ

Java:

char c = '\u2C41';
System.out.println(c);  // Output: ⱁ

JSON:

{"text": "\u2C41"}  // Value: ⱁ

Python:

char = '\u2C41'
print(char)  # Output: ⱁ

Perl:

my $char = "\x{2C41}";
print $char;  # Output: ⱁ

PHP:

$char = "\x{2C41}";
echo $char;  // Output: ⱁ

Ruby:

char = "\u{2C41}"
puts char  # Output: ⱁ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11329;</p>  <!-- Display: ⱁ -->

HTML Hexadecimal:

<p>HTML hex: &#x2C41;</p>  <!-- Display: ⱁ -->

URL Encoding:

// ⱁ URL encoding
https://unicodefinder.com/search.php?query=%E2%B1%81

Encodings

MD5:

8440507a197cce9fdf5fbe69cd820b6a

SHA1:

3703dff1c348c7bcff6f5664948f3ea10889c4b5

Base64:

4rGB