Unicode Finder

"ᠶ" U+1836(MONGOLIAN LETTER YA)

U+1836
Nume Bloc
Mongolian
Nume
MONGOLIAN LETTER YA

Programming

C
\u1836
JavaScript
\u1836
Java
\u1836
Json
\u1836
Python
\u1836
Perl
\x{1836}
PHP
\x{1836}
Ruby
\u{1836}
Rust
\u{1836}
Go
\u1836

Web

CSS
\001836
HtmlDecimal
ᠶ
HtmlHexadecimal
ᠶ
Url
%E1%A0%B6

Code

MD5
790210558a75b1d3e7549b68f0a6af02
Sha1
e5054bab4171211561f57b32a74c5131f3ab0cfc
Base64
4aC2

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u1836';
console.log(char);  // Output: ᠶ

Java:

char c = '\u1836';
System.out.println(c);  // Output: ᠶ

JSON:

{"text": "\u1836"}  // Value: ᠶ

Python:

char = '\u1836'
print(char)  # Output: ᠶ

Perl:

my $char = "\x{1836}";
print $char;  # Output: ᠶ

PHP:

$char = "\x{1836}";
echo $char;  // Output: ᠶ

Ruby:

char = "\u{1836}"
puts char  # Output: ᠶ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001836";  /* Display: ᠶ */
}

HTML Decimal:

<p>HTML decimal: &#6198;</p>  <!-- Display: ᠶ -->

HTML Hexadecimal:

<p>HTML hex: &#x1836;</p>  <!-- Display: ᠶ -->

URL Encoding:

// ᠶ URL encoding
https://unicodefinder.com/search.php?query=%E1%A0%B6

Encodings

MD5:

790210558a75b1d3e7549b68f0a6af02

SHA1:

e5054bab4171211561f57b32a74c5131f3ab0cfc

Base64:

4aC2