Unicode Finder

"ᠿ" U+183F(MONGOLIAN LETTER ZRA)

U+183F
블록 이름
Mongolian
이름
MONGOLIAN LETTER ZRA

Programming

C
\u183F
JavaScript
\u183F
Java
\u183F
Json
\u183F
Python
\u183F
Perl
\x{183F}
PHP
\x{183F}
Ruby
\u{183F}
Rust
\u{183F}
Go
\u183F

Web

CSS
\00183F
HtmlDecimal
ᠿ
HtmlHexadecimal
ᠿ
Url
%E1%A0%BF

Code

MD5
fcb443934bf69c2ff756b10f7f885636
Sha1
905a5c3a4631393b0d5a4ee3eb14a5c2321ecb1b
Base64
4aC/

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\u183F';
console.log(char);  // Output: ᠿ

Java:

char c = '\u183F';
System.out.println(c);  // Output: ᠿ

JSON:

{"text": "\u183F"}  // Value: ᠿ

Python:

char = '\u183F'
print(char)  # Output: ᠿ

Perl:

my $char = "\x{183F}";
print $char;  # Output: ᠿ

PHP:

$char = "\x{183F}";
echo $char;  // Output: ᠿ

Ruby:

char = "\u{183F}"
puts char  # Output: ᠿ

Rust:

let c = '\u{183F}';
println!("{}", c);  // Output: ᠿ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00183F";  /* Display: ᠿ */
}

HTML Decimal:

<p>HTML decimal: &#6207;</p>  <!-- Display: ᠿ -->

HTML Hexadecimal:

<p>HTML hex: &#x183F;</p>  <!-- Display: ᠿ -->

URL Encoding:

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

Encodings

MD5:

fcb443934bf69c2ff756b10f7f885636

SHA1:

905a5c3a4631393b0d5a4ee3eb14a5c2321ecb1b

Base64:

4aC/