Unicode Finder

"몼" U+BABC(HANGUL SYLLABLE MOSS)

U+BABC
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MOSS

Programming

C
\uBABC
JavaScript
\uBABC
Java
\uBABC
Json
\uBABC
Python
\uBABC
Perl
\x{BABC}
PHP
\x{BABC}
Ruby
\u{BABC}
Rust
\u{BABC}
Go
\uBABC

Web

CSS
\00BABC
HtmlDecimal
몼
HtmlHexadecimal
몼
Url
%EB%AA%BC

Code

MD5
53e483110384357eccfffd3fbe580e6c
Sha1
37344dfb19735bee1e24e2f9cafed4351c05dac4
Base64
66q8

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBABC';
console.log(char);  // Output: 몼

Java:

char c = '\uBABC';
System.out.println(c);  // Output: 몼

JSON:

{"text": "\uBABC"}  // Value: 몼

Python:

char = '\uBABC'
print(char)  # Output: 몼

Perl:

my $char = "\x{BABC}";
print $char;  # Output: 몼

PHP:

$char = "\x{BABC}";
echo $char;  // Output: 몼

Ruby:

char = "\u{BABC}"
puts char  # Output: 몼

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47804;</p>  <!-- Display: 몼 -->

HTML Hexadecimal:

<p>HTML hex: &#xBABC;</p>  <!-- Display: 몼 -->

URL Encoding:

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

Encodings

MD5:

53e483110384357eccfffd3fbe580e6c

SHA1:

37344dfb19735bee1e24e2f9cafed4351c05dac4

Base64:

66q8