Unicode Finder

"몿" U+BABF(HANGUL SYLLABLE MOC)

몿
U+BABF
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MOC

Programming

C
\uBABF
JavaScript
\uBABF
Java
\uBABF
Json
\uBABF
Python
\uBABF
Perl
\x{BABF}
PHP
\x{BABF}
Ruby
\u{BABF}
Rust
\u{BABF}
Go
\uBABF

Web

CSS
\00BABF
HtmlDecimal
몿
HtmlHexadecimal
몿
Url
%EB%AA%BF

Code

MD5
8eda7fbed4f94a500be49a84e3a143ef
Sha1
3afe132b0968a25bcca5dce63f06d4f340bf5633
Base64
66q/

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBABF';
console.log(char);  // Output: 몿

Java:

char c = '\uBABF';
System.out.println(c);  // Output: 몿

JSON:

{"text": "\uBABF"}  // Value: 몿

Python:

char = '\uBABF'
print(char)  # Output: 몿

Perl:

my $char = "\x{BABF}";
print $char;  # Output: 몿

PHP:

$char = "\x{BABF}";
echo $char;  // Output: 몿

Ruby:

char = "\u{BABF}"
puts char  # Output: 몿

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00BABF";  /* Display: 몿 */
}

HTML Decimal:

<p>HTML decimal: &#47807;</p>  <!-- Display: 몿 -->

HTML Hexadecimal:

<p>HTML hex: &#xBABF;</p>  <!-- Display: 몿 -->

URL Encoding:

// 몿 URL encoding
https://unicodefinder.com/search.php?query=%EB%AA%BF

Encodings

MD5:

8eda7fbed4f94a500be49a84e3a143ef

SHA1:

3afe132b0968a25bcca5dce63f06d4f340bf5633

Base64:

66q/