Unicode Finder

"Ⱀ" U+2C10(GLAGOLITIC CAPITAL LETTER NASHI)

U+2C10
Block Name
Glagolitic
Name
GLAGOLITIC CAPITAL LETTER NASHI

Programming

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

Web

CSS
\002C10
HtmlDecimal
Ⱀ
HtmlHexadecimal
Ⱀ
Url
%E2%B0%90

Code

MD5
4c1e2b001bc4f83882d902310291c841
Sha1
c435dfd741ca789689e19cefdc5054af1c7d04b5
Base64
4rCQ

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2C10';
console.log(char);  // Output: Ⱀ

Java:

char c = '\u2C10';
System.out.println(c);  // Output: Ⱀ

JSON:

{"text": "\u2C10"}  // Value: Ⱀ

Python:

char = '\u2C10'
print(char)  # Output: Ⱀ

Perl:

my $char = "\x{2C10}";
print $char;  # Output: Ⱀ

PHP:

$char = "\x{2C10}";
echo $char;  // Output: Ⱀ

Ruby:

char = "\u{2C10}"
puts char  # Output: Ⱀ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11280;</p>  <!-- Display: Ⱀ -->

HTML Hexadecimal:

<p>HTML hex: &#x2C10;</p>  <!-- Display: Ⱀ -->

URL Encoding:

// Ⱀ URL encoding
https://unicodefinder.com/search.php?query=%E2%B0%90

Encodings

MD5:

4c1e2b001bc4f83882d902310291c841

SHA1:

c435dfd741ca789689e19cefdc5054af1c7d04b5

Base64:

4rCQ