Unicode Finder

"ⱓ" U+2C53(GLAGOLITIC SMALL LETTER YU)

U+2C53
Block Name
Glagolitic
Name
GLAGOLITIC SMALL LETTER YU

Programming

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

Web

CSS
\002C53
HtmlDecimal
ⱓ
HtmlHexadecimal
ⱓ
Url
%E2%B1%93

Code

MD5
8ffefefbc05e7f47bf8c22d3b467075a
Sha1
b47167a35f5c67682f60494be047bf067736e515
Base64
4rGT

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2C53';
console.log(char);  // Output: ⱓ

Java:

char c = '\u2C53';
System.out.println(c);  // Output: ⱓ

JSON:

{"text": "\u2C53"}  // Value: ⱓ

Python:

char = '\u2C53'
print(char)  # Output: ⱓ

Perl:

my $char = "\x{2C53}";
print $char;  # Output: ⱓ

PHP:

$char = "\x{2C53}";
echo $char;  // Output: ⱓ

Ruby:

char = "\u{2C53}"
puts char  # Output: ⱓ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11347;</p>  <!-- Display: ⱓ -->

HTML Hexadecimal:

<p>HTML hex: &#x2C53;</p>  <!-- Display: ⱓ -->

URL Encoding:

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

Encodings

MD5:

8ffefefbc05e7f47bf8c22d3b467075a

SHA1:

b47167a35f5c67682f60494be047bf067736e515

Base64:

4rGT