Unicode Finder

"몉" U+BA89(HANGUL SYLLABLE MYEOT)

U+BA89
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MYEOT

Programming

C
\uBA89
JavaScript
\uBA89
Java
\uBA89
Json
\uBA89
Python
\uBA89
Perl
\x{BA89}
PHP
\x{BA89}
Ruby
\u{BA89}
Rust
\u{BA89}
Go
\uBA89

Web

CSS
\00BA89
HtmlDecimal
몉
HtmlHexadecimal
몉
Url
%EB%AA%89

Code

MD5
55e7d0fb24cf6e735d0fd5895e426e26
Sha1
1481f8ab45ab53d020179495c056d0d7e0a82f57
Base64
66qJ

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBA89';
console.log(char);  // Output: 몉

Java:

char c = '\uBA89';
System.out.println(c);  // Output: 몉

JSON:

{"text": "\uBA89"}  // Value: 몉

Python:

char = '\uBA89'
print(char)  # Output: 몉

Perl:

my $char = "\x{BA89}";
print $char;  # Output: 몉

PHP:

$char = "\x{BA89}";
echo $char;  // Output: 몉

Ruby:

char = "\u{BA89}"
puts char  # Output: 몉

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47753;</p>  <!-- Display: 몉 -->

HTML Hexadecimal:

<p>HTML hex: &#xBA89;</p>  <!-- Display: 몉 -->

URL Encoding:

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

Encodings

MD5:

55e7d0fb24cf6e735d0fd5895e426e26

SHA1:

1481f8ab45ab53d020179495c056d0d7e0a82f57

Base64:

66qJ