Unicode Finder

"ᢑ" U+1891(MONGOLIAN LETTER ALI GALI DA)

U+1891
Block Name
Mongolian
Name
MONGOLIAN LETTER ALI GALI DA

Programming

C
\u1891
JavaScript
\u1891
Java
\u1891
Json
\u1891
Python
\u1891
Perl
\x{1891}
PHP
\x{1891}
Ruby
\u{1891}
Rust
\u{1891}
Go
\u1891

Web

CSS
\001891
HtmlDecimal
ᢑ
HtmlHexadecimal
ᢑ
Url
%E1%A2%91

Code

MD5
385c5a24fa706967e8a61093bca612b9
Sha1
c60346b5e33d8f0ad4fd21ddd4080916b0460c47
Base64
4aKR

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u1891';
console.log(char);  // Output: ᢑ

Java:

char c = '\u1891';
System.out.println(c);  // Output: ᢑ

JSON:

{"text": "\u1891"}  // Value: ᢑ

Python:

char = '\u1891'
print(char)  # Output: ᢑ

Perl:

my $char = "\x{1891}";
print $char;  # Output: ᢑ

PHP:

$char = "\x{1891}";
echo $char;  // Output: ᢑ

Ruby:

char = "\u{1891}"
puts char  # Output: ᢑ

Rust:

let c = '\u{1891}';
println!("{}", c);  // Output: ᢑ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001891";  /* Display: ᢑ */
}

HTML Decimal:

<p>HTML decimal: &#6289;</p>  <!-- Display: ᢑ -->

HTML Hexadecimal:

<p>HTML hex: &#x1891;</p>  <!-- Display: ᢑ -->

URL Encoding:

// ᢑ URL encoding
https://unicodefinder.com/search.php?query=%E1%A2%91

Encodings

MD5:

385c5a24fa706967e8a61093bca612b9

SHA1:

c60346b5e33d8f0ad4fd21ddd4080916b0460c47

Base64:

4aKR