Unicode Finder

"몌" U+BA8C(HANGUL SYLLABLE MYE)

U+BA8C
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MYE

Programming

C
\uBA8C
JavaScript
\uBA8C
Java
\uBA8C
Json
\uBA8C
Python
\uBA8C
Perl
\x{BA8C}
PHP
\x{BA8C}
Ruby
\u{BA8C}
Rust
\u{BA8C}
Go
\uBA8C

Web

CSS
\00BA8C
HtmlDecimal
몌
HtmlHexadecimal
몌
Url
%EB%AA%8C

Code

MD5
d04b85f7b3eff1cf92086ebab534f798
Sha1
233f108ebdf09a1715758e078a5e55af682313d8
Base64
66qM

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBA8C';
console.log(char);  // Output: 몌

Java:

char c = '\uBA8C';
System.out.println(c);  // Output: 몌

JSON:

{"text": "\uBA8C"}  // Value: 몌

Python:

char = '\uBA8C'
print(char)  # Output: 몌

Perl:

my $char = "\x{BA8C}";
print $char;  # Output: 몌

PHP:

$char = "\x{BA8C}";
echo $char;  // Output: 몌

Ruby:

char = "\u{BA8C}"
puts char  # Output: 몌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47756;</p>  <!-- Display: 몌 -->

HTML Hexadecimal:

<p>HTML hex: &#xBA8C;</p>  <!-- Display: 몌 -->

URL Encoding:

// 몌 URL encoding
https://unicodefinder.com/search.php?query=%EB%AA%8C

Encodings

MD5:

d04b85f7b3eff1cf92086ebab534f798

SHA1:

233f108ebdf09a1715758e078a5e55af682313d8

Base64:

66qM