Unicode Finder

"몱" U+BAB1(HANGUL SYLLABLE MOLG)

U+BAB1
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MOLG

Programming

C
\uBAB1
JavaScript
\uBAB1
Java
\uBAB1
Json
\uBAB1
Python
\uBAB1
Perl
\x{BAB1}
PHP
\x{BAB1}
Ruby
\u{BAB1}
Rust
\u{BAB1}
Go
\uBAB1

Web

CSS
\00BAB1
HtmlDecimal
몱
HtmlHexadecimal
몱
Url
%EB%AA%B1

Code

MD5
351dd32fa7973f93d1dfe0c4cb4082f1
Sha1
16d8093ccf7b3e575a1d4ec0eb2d43b7c57319ab
Base64
66qx

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBAB1';
console.log(char);  // Output: 몱

Java:

char c = '\uBAB1';
System.out.println(c);  // Output: 몱

JSON:

{"text": "\uBAB1"}  // Value: 몱

Python:

char = '\uBAB1'
print(char)  # Output: 몱

Perl:

my $char = "\x{BAB1}";
print $char;  # Output: 몱

PHP:

$char = "\x{BAB1}";
echo $char;  // Output: 몱

Ruby:

char = "\u{BAB1}"
puts char  # Output: 몱

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47793;</p>  <!-- Display: 몱 -->

HTML Hexadecimal:

<p>HTML hex: &#xBAB1;</p>  <!-- Display: 몱 -->

URL Encoding:

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

Encodings

MD5:

351dd32fa7973f93d1dfe0c4cb4082f1

SHA1:

16d8093ccf7b3e575a1d4ec0eb2d43b7c57319ab

Base64:

66qx