Unicode Finder

"Ⱏ" U+2C1F(GLAGOLITIC CAPITAL LETTER YERU)

U+2C1F
Block Name
Glagolitic
Name
GLAGOLITIC CAPITAL LETTER YERU

Programming

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

Web

CSS
\002C1F
HtmlDecimal
Ⱏ
HtmlHexadecimal
Ⱏ
Url
%E2%B0%9F

Code

MD5
0beea91d4ac98d5d9e138ec67ca02bd4
Sha1
ee48ddc85334f7fb3c369a13c6c8964c7112a72f
Base64
4rCf

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2C1F';
console.log(char);  // Output: Ⱏ

Java:

char c = '\u2C1F';
System.out.println(c);  // Output: Ⱏ

JSON:

{"text": "\u2C1F"}  // Value: Ⱏ

Python:

char = '\u2C1F'
print(char)  # Output: Ⱏ

Perl:

my $char = "\x{2C1F}";
print $char;  # Output: Ⱏ

PHP:

$char = "\x{2C1F}";
echo $char;  // Output: Ⱏ

Ruby:

char = "\u{2C1F}"
puts char  # Output: Ⱏ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11295;</p>  <!-- Display: Ⱏ -->

HTML Hexadecimal:

<p>HTML hex: &#x2C1F;</p>  <!-- Display: Ⱏ -->

URL Encoding:

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

Encodings

MD5:

0beea91d4ac98d5d9e138ec67ca02bd4

SHA1:

ee48ddc85334f7fb3c369a13c6c8964c7112a72f

Base64:

4rCf