Unicode Finder

"ⱘ" U+2C58(GLAGOLITIC SMALL LETTER BIG YUS)

U+2C58
Block Name
Glagolitic
Name
GLAGOLITIC SMALL LETTER BIG YUS

Programming

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

Web

CSS
\002C58
HtmlDecimal
ⱘ
HtmlHexadecimal
ⱘ
Url
%E2%B1%98

Code

MD5
ee4794c5c8c9180180bf19cbef9338c2
Sha1
6eee8af8309ec775601c5af6357af01bfc89d222
Base64
4rGY

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2C58';
console.log(char);  // Output: ⱘ

Java:

char c = '\u2C58';
System.out.println(c);  // Output: ⱘ

JSON:

{"text": "\u2C58"}  // Value: ⱘ

Python:

char = '\u2C58'
print(char)  # Output: ⱘ

Perl:

my $char = "\x{2C58}";
print $char;  # Output: ⱘ

PHP:

$char = "\x{2C58}";
echo $char;  // Output: ⱘ

Ruby:

char = "\u{2C58}"
puts char  # Output: ⱘ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11352;</p>  <!-- Display: ⱘ -->

HTML Hexadecimal:

<p>HTML hex: &#x2C58;</p>  <!-- Display: ⱘ -->

URL Encoding:

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

Encodings

MD5:

ee4794c5c8c9180180bf19cbef9338c2

SHA1:

6eee8af8309ec775601c5af6357af01bfc89d222

Base64:

4rGY