Unicode Finder

"ᡅ" U+1845(MONGOLIAN LETTER TODO I)

U+1845
Název Bloku
Mongolian
Název
MONGOLIAN LETTER TODO I

Programming

C
\u1845
JavaScript
\u1845
Java
\u1845
Json
\u1845
Python
\u1845
Perl
\x{1845}
PHP
\x{1845}
Ruby
\u{1845}
Rust
\u{1845}
Go
\u1845

Web

CSS
\001845
HtmlDecimal
ᡅ
HtmlHexadecimal
ᡅ
Url
%E1%A1%85

Code

MD5
4e2417bff47c647a03c14a932cd47d84
Sha1
6f723371dc4be721049a7206a57aec0f0bc733dc
Base64
4aGF

Příklady Použití

Programming Languages

C:

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

JavaScript:

const char = '\u1845';
console.log(char);  // Output: ᡅ

Java:

char c = '\u1845';
System.out.println(c);  // Output: ᡅ

JSON:

{"text": "\u1845"}  // Value: ᡅ

Python:

char = '\u1845'
print(char)  # Output: ᡅ

Perl:

my $char = "\x{1845}";
print $char;  # Output: ᡅ

PHP:

$char = "\x{1845}";
echo $char;  // Output: ᡅ

Ruby:

char = "\u{1845}"
puts char  # Output: ᡅ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001845";  /* Display: ᡅ */
}

HTML Decimal:

<p>HTML decimal: &#6213;</p>  <!-- Display: ᡅ -->

HTML Hexadecimal:

<p>HTML hex: &#x1845;</p>  <!-- Display: ᡅ -->

URL Encoding:

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

Encodings

MD5:

4e2417bff47c647a03c14a932cd47d84

SHA1:

6f723371dc4be721049a7206a57aec0f0bc733dc

Base64:

4aGF