Unicode Finder

"ᢒ" U+1892(MONGOLIAN LETTER ALI GALI PA)

U+1892
שם בלוק
Mongolian
שם
MONGOLIAN LETTER ALI GALI PA

Programming

C
\u1892
JavaScript
\u1892
Java
\u1892
Json
\u1892
Python
\u1892
Perl
\x{1892}
PHP
\x{1892}
Ruby
\u{1892}
Rust
\u{1892}
Go
\u1892

Web

CSS
\001892
HtmlDecimal
ᢒ
HtmlHexadecimal
ᢒ
Url
%E1%A2%92

Code

MD5
a0f345930145f97f1ca88c8db2db4741
Sha1
1df3505cc38ab078fc0b79d24869393e1f0d8219
Base64
4aKS

דוגמאות שימוש

Programming Languages

C:

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

JavaScript:

const char = '\u1892';
console.log(char);  // Output: ᢒ

Java:

char c = '\u1892';
System.out.println(c);  // Output: ᢒ

JSON:

{"text": "\u1892"}  // Value: ᢒ

Python:

char = '\u1892'
print(char)  # Output: ᢒ

Perl:

my $char = "\x{1892}";
print $char;  # Output: ᢒ

PHP:

$char = "\x{1892}";
echo $char;  // Output: ᢒ

Ruby:

char = "\u{1892}"
puts char  # Output: ᢒ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001892";  /* Display: ᢒ */
}

HTML Decimal:

<p>HTML decimal: &#6290;</p>  <!-- Display: ᢒ -->

HTML Hexadecimal:

<p>HTML hex: &#x1892;</p>  <!-- Display: ᢒ -->

URL Encoding:

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

Encodings

MD5:

a0f345930145f97f1ca88c8db2db4741

SHA1:

1df3505cc38ab078fc0b79d24869393e1f0d8219

Base64:

4aKS