Unicode Finder

"᠔" U+1814(MONGOLIAN DIGIT FOUR)

U+1814
ब्लॉक का नाम
Mongolian
नाम
MONGOLIAN DIGIT FOUR

Programming

C
\u1814
JavaScript
\u1814
Java
\u1814
Json
\u1814
Python
\u1814
Perl
\x{1814}
PHP
\x{1814}
Ruby
\u{1814}
Rust
\u{1814}
Go
\u1814

Web

CSS
\001814
HtmlDecimal
᠔
HtmlHexadecimal
᠔
Url
%E1%A0%94

Code

MD5
f8bf0f998b125e706e4bc24a88de40a5
Sha1
666fcbf5a370a93ef8975f5c55812f0994448ae9
Base64
4aCU

उपयोग के उदाहरण

Programming Languages

C:

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

JavaScript:

const char = '\u1814';
console.log(char);  // Output: ᠔

Java:

char c = '\u1814';
System.out.println(c);  // Output: ᠔

JSON:

{"text": "\u1814"}  // Value: ᠔

Python:

char = '\u1814'
print(char)  # Output: ᠔

Perl:

my $char = "\x{1814}";
print $char;  # Output: ᠔

PHP:

$char = "\x{1814}";
echo $char;  // Output: ᠔

Ruby:

char = "\u{1814}"
puts char  # Output: ᠔

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001814";  /* Display: ᠔ */
}

HTML Decimal:

<p>HTML decimal: &#6164;</p>  <!-- Display: ᠔ -->

HTML Hexadecimal:

<p>HTML hex: &#x1814;</p>  <!-- Display: ᠔ -->

URL Encoding:

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

Encodings

MD5:

f8bf0f998b125e706e4bc24a88de40a5

SHA1:

666fcbf5a370a93ef8975f5c55812f0994448ae9

Base64:

4aCU