Unicode Finder

"ⱖ" U+2C56(GLAGOLITIC SMALL LETTER YO)

U+2C56
Block Name
Glagolitic
Name
GLAGOLITIC SMALL LETTER YO

Programming

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

Web

CSS
\002C56
HtmlDecimal
ⱖ
HtmlHexadecimal
ⱖ
Url
%E2%B1%96

Code

MD5
c3cab9bc56238dfdecbb5733638eaf9b
Sha1
2d760c780bd81f074465b4801664be992de0e148
Base64
4rGW

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2C56';
console.log(char);  // Output: ⱖ

Java:

char c = '\u2C56';
System.out.println(c);  // Output: ⱖ

JSON:

{"text": "\u2C56"}  // Value: ⱖ

Python:

char = '\u2C56'
print(char)  # Output: ⱖ

Perl:

my $char = "\x{2C56}";
print $char;  # Output: ⱖ

PHP:

$char = "\x{2C56}";
echo $char;  // Output: ⱖ

Ruby:

char = "\u{2C56}"
puts char  # Output: ⱖ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11350;</p>  <!-- Display: ⱖ -->

HTML Hexadecimal:

<p>HTML hex: &#x2C56;</p>  <!-- Display: ⱖ -->

URL Encoding:

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

Encodings

MD5:

c3cab9bc56238dfdecbb5733638eaf9b

SHA1:

2d760c780bd81f074465b4801664be992de0e148

Base64:

4rGW