Unicode Finder

"ⱔ" U+2C54(GLAGOLITIC SMALL LETTER SMALL YUS)

U+2C54
Block Name
Glagolitic
Name
GLAGOLITIC SMALL LETTER SMALL YUS

Programming

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

Web

CSS
\002C54
HtmlDecimal
ⱔ
HtmlHexadecimal
ⱔ
Url
%E2%B1%94

Code

MD5
5fc0db51db8c4e18af978caef50289d7
Sha1
513d06cb6f23a6001d97b5a54180314b2b084576
Base64
4rGU

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2C54';
console.log(char);  // Output: ⱔ

Java:

char c = '\u2C54';
System.out.println(c);  // Output: ⱔ

JSON:

{"text": "\u2C54"}  // Value: ⱔ

Python:

char = '\u2C54'
print(char)  # Output: ⱔ

Perl:

my $char = "\x{2C54}";
print $char;  # Output: ⱔ

PHP:

$char = "\x{2C54}";
echo $char;  // Output: ⱔ

Ruby:

char = "\u{2C54}"
puts char  # Output: ⱔ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11348;</p>  <!-- Display: ⱔ -->

HTML Hexadecimal:

<p>HTML hex: &#x2C54;</p>  <!-- Display: ⱔ -->

URL Encoding:

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

Encodings

MD5:

5fc0db51db8c4e18af978caef50289d7

SHA1:

513d06cb6f23a6001d97b5a54180314b2b084576

Base64:

4rGU