Unicode Finder

"몲" U+BAB2(HANGUL SYLLABLE MOLM)

U+BAB2
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MOLM

Programming

C
\uBAB2
JavaScript
\uBAB2
Java
\uBAB2
Json
\uBAB2
Python
\uBAB2
Perl
\x{BAB2}
PHP
\x{BAB2}
Ruby
\u{BAB2}
Rust
\u{BAB2}
Go
\uBAB2

Web

CSS
\00BAB2
HtmlDecimal
몲
HtmlHexadecimal
몲
Url
%EB%AA%B2

Code

MD5
83aa9bb0a54d788808051b44ae4c42ce
Sha1
b7a79e0c02ea84914b275b2d532d84fe8afac3fe
Base64
66qy

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBAB2';
console.log(char);  // Output: 몲

Java:

char c = '\uBAB2';
System.out.println(c);  // Output: 몲

JSON:

{"text": "\uBAB2"}  // Value: 몲

Python:

char = '\uBAB2'
print(char)  # Output: 몲

Perl:

my $char = "\x{BAB2}";
print $char;  # Output: 몲

PHP:

$char = "\x{BAB2}";
echo $char;  // Output: 몲

Ruby:

char = "\u{BAB2}"
puts char  # Output: 몲

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47794;</p>  <!-- Display: 몲 -->

HTML Hexadecimal:

<p>HTML hex: &#xBAB2;</p>  <!-- Display: 몲 -->

URL Encoding:

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

Encodings

MD5:

83aa9bb0a54d788808051b44ae4c42ce

SHA1:

b7a79e0c02ea84914b275b2d532d84fe8afac3fe

Base64:

66qy