Unicode Finder

"ᠧ" U+1827(MONGOLIAN LETTER EE)

U+1827
区块名称
Mongolian
名称
MONGOLIAN LETTER EE

Programming

C
\u1827
JavaScript
\u1827
Java
\u1827
Json
\u1827
Python
\u1827
Perl
\x{1827}
PHP
\x{1827}
Ruby
\u{1827}
Rust
\u{1827}
Go
\u1827

Web

CSS
\001827
HtmlDecimal
ᠧ
HtmlHexadecimal
ᠧ
Url
%E1%A0%A7

Code

MD5
2a44e760dd5e5aead123d895f40a4468
Sha1
967446f593def8be3427ba67ab8b126333736969
Base64
4aCn

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u1827';
console.log(char);  // Output: ᠧ

Java:

char c = '\u1827';
System.out.println(c);  // Output: ᠧ

JSON:

{"text": "\u1827"}  // Value: ᠧ

Python:

char = '\u1827'
print(char)  # Output: ᠧ

Perl:

my $char = "\x{1827}";
print $char;  # Output: ᠧ

PHP:

$char = "\x{1827}";
echo $char;  // Output: ᠧ

Ruby:

char = "\u{1827}"
puts char  # Output: ᠧ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001827";  /* Display: ᠧ */
}

HTML Decimal:

<p>HTML decimal: &#6183;</p>  <!-- Display: ᠧ -->

HTML Hexadecimal:

<p>HTML hex: &#x1827;</p>  <!-- Display: ᠧ -->

URL Encoding:

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

Encodings

MD5:

2a44e760dd5e5aead123d895f40a4468

SHA1:

967446f593def8be3427ba67ab8b126333736969

Base64:

4aCn