Unicode Finder

"Ⰴ" U+2C04(GLAGOLITIC CAPITAL LETTER DOBRO)

U+2C04
Block Name
Glagolitic
Name
GLAGOLITIC CAPITAL LETTER DOBRO

Programming

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

Web

CSS
\002C04
HtmlDecimal
Ⰴ
HtmlHexadecimal
Ⰴ
Url
%E2%B0%84

Code

MD5
dcbb138fcab9dae7f99a0bcccd30dbae
Sha1
e41f58280c293926fb7d23e746830e4d37c53532
Base64
4rCE

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2C04';
console.log(char);  // Output: Ⰴ

Java:

char c = '\u2C04';
System.out.println(c);  // Output: Ⰴ

JSON:

{"text": "\u2C04"}  // Value: Ⰴ

Python:

char = '\u2C04'
print(char)  # Output: Ⰴ

Perl:

my $char = "\x{2C04}";
print $char;  # Output: Ⰴ

PHP:

$char = "\x{2C04}";
echo $char;  // Output: Ⰴ

Ruby:

char = "\u{2C04}"
puts char  # Output: Ⰴ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11268;</p>  <!-- Display: Ⰴ -->

HTML Hexadecimal:

<p>HTML hex: &#x2C04;</p>  <!-- Display: Ⰴ -->

URL Encoding:

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

Encodings

MD5:

dcbb138fcab9dae7f99a0bcccd30dbae

SHA1:

e41f58280c293926fb7d23e746830e4d37c53532

Base64:

4rCE