Unicode Finder

"ᡲ" U+1872(MONGOLIAN LETTER SIBE ZHA)

U+1872
Nama Blok
Mongolian
Nama
MONGOLIAN LETTER SIBE ZHA

Programming

C
\u1872
JavaScript
\u1872
Java
\u1872
Json
\u1872
Python
\u1872
Perl
\x{1872}
PHP
\x{1872}
Ruby
\u{1872}
Rust
\u{1872}
Go
\u1872

Web

CSS
\001872
HtmlDecimal
ᡲ
HtmlHexadecimal
ᡲ
Url
%E1%A1%B2

Code

MD5
f3e1585479a70053f618f8a619035044
Sha1
e0b0e5f92f35ca4168de89dd45cd34b0004cd8ae
Base64
4aGy

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u1872';
console.log(char);  // Output: ᡲ

Java:

char c = '\u1872';
System.out.println(c);  // Output: ᡲ

JSON:

{"text": "\u1872"}  // Value: ᡲ

Python:

char = '\u1872'
print(char)  # Output: ᡲ

Perl:

my $char = "\x{1872}";
print $char;  # Output: ᡲ

PHP:

$char = "\x{1872}";
echo $char;  // Output: ᡲ

Ruby:

char = "\u{1872}"
puts char  # Output: ᡲ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001872";  /* Display: ᡲ */
}

HTML Decimal:

<p>HTML decimal: &#6258;</p>  <!-- Display: ᡲ -->

HTML Hexadecimal:

<p>HTML hex: &#x1872;</p>  <!-- Display: ᡲ -->

URL Encoding:

// ᡲ URL encoding
https://unicodefinder.com/search.php?query=%E1%A1%B2

Encodings

MD5:

f3e1585479a70053f618f8a619035044

SHA1:

e0b0e5f92f35ca4168de89dd45cd34b0004cd8ae

Base64:

4aGy