Unicode Finder

"몖" U+BA96(HANGUL SYLLABLE MYELM)

U+BA96
ブロック名
Hangul Syllables
名前
HANGUL SYLLABLE MYELM

Programming

C
\uBA96
JavaScript
\uBA96
Java
\uBA96
Json
\uBA96
Python
\uBA96
Perl
\x{BA96}
PHP
\x{BA96}
Ruby
\u{BA96}
Rust
\u{BA96}
Go
\uBA96

Web

CSS
\00BA96
HtmlDecimal
몖
HtmlHexadecimal
몖
Url
%EB%AA%96

Code

MD5
8adf27e57a085bd45f34a5a51199d3eb
Sha1
4b9cba25dfd2a305460b84f675c6d4422ad7fe66
Base64
66qW

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uBA96';
console.log(char);  // Output: 몖

Java:

char c = '\uBA96';
System.out.println(c);  // Output: 몖

JSON:

{"text": "\uBA96"}  // Value: 몖

Python:

char = '\uBA96'
print(char)  # Output: 몖

Perl:

my $char = "\x{BA96}";
print $char;  # Output: 몖

PHP:

$char = "\x{BA96}";
echo $char;  // Output: 몖

Ruby:

char = "\u{BA96}"
puts char  # Output: 몖

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47766;</p>  <!-- Display: 몖 -->

HTML Hexadecimal:

<p>HTML hex: &#xBA96;</p>  <!-- Display: 몖 -->

URL Encoding:

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

Encodings

MD5:

8adf27e57a085bd45f34a5a51199d3eb

SHA1:

4b9cba25dfd2a305460b84f675c6d4422ad7fe66

Base64:

66qW