Unicode Finder

"ᠳ" U+1833(MONGOLIAN LETTER DA)

U+1833
Blokk Neve
Mongolian
Név
MONGOLIAN LETTER DA

Programming

C
\u1833
JavaScript
\u1833
Java
\u1833
Json
\u1833
Python
\u1833
Perl
\x{1833}
PHP
\x{1833}
Ruby
\u{1833}
Rust
\u{1833}
Go
\u1833

Web

CSS
\001833
HtmlDecimal
ᠳ
HtmlHexadecimal
ᠳ
Url
%E1%A0%B3

Code

MD5
a7104e904946e7f0ed287fd6f503d4ce
Sha1
6dfd11ba6136330e88bfa2f253a715ab8806b29d
Base64
4aCz

Használati Példák

Programming Languages

C:

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

JavaScript:

const char = '\u1833';
console.log(char);  // Output: ᠳ

Java:

char c = '\u1833';
System.out.println(c);  // Output: ᠳ

JSON:

{"text": "\u1833"}  // Value: ᠳ

Python:

char = '\u1833'
print(char)  # Output: ᠳ

Perl:

my $char = "\x{1833}";
print $char;  # Output: ᠳ

PHP:

$char = "\x{1833}";
echo $char;  // Output: ᠳ

Ruby:

char = "\u{1833}"
puts char  # Output: ᠳ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001833";  /* Display: ᠳ */
}

HTML Decimal:

<p>HTML decimal: &#6195;</p>  <!-- Display: ᠳ -->

HTML Hexadecimal:

<p>HTML hex: &#x1833;</p>  <!-- Display: ᠳ -->

URL Encoding:

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

Encodings

MD5:

a7104e904946e7f0ed287fd6f503d4ce

SHA1:

6dfd11ba6136330e88bfa2f253a715ab8806b29d

Base64:

4aCz