Unicode Finder

"몇" U+BA87(HANGUL SYLLABLE MYEOC)

U+BA87
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MYEOC

Programming

C
\uBA87
JavaScript
\uBA87
Java
\uBA87
Json
\uBA87
Python
\uBA87
Perl
\x{BA87}
PHP
\x{BA87}
Ruby
\u{BA87}
Rust
\u{BA87}
Go
\uBA87

Web

CSS
\00BA87
HtmlDecimal
몇
HtmlHexadecimal
몇
Url
%EB%AA%87

Code

MD5
6f3a7124c3d027ea8bbed02157be848a
Sha1
eaa640aced911a4dde2bbac13b2511e5b2daca9f
Base64
66qH

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBA87';
console.log(char);  // Output: 몇

Java:

char c = '\uBA87';
System.out.println(c);  // Output: 몇

JSON:

{"text": "\uBA87"}  // Value: 몇

Python:

char = '\uBA87'
print(char)  # Output: 몇

Perl:

my $char = "\x{BA87}";
print $char;  # Output: 몇

PHP:

$char = "\x{BA87}";
echo $char;  // Output: 몇

Ruby:

char = "\u{BA87}"
puts char  # Output: 몇

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47751;</p>  <!-- Display: 몇 -->

HTML Hexadecimal:

<p>HTML hex: &#xBA87;</p>  <!-- Display: 몇 -->

URL Encoding:

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

Encodings

MD5:

6f3a7124c3d027ea8bbed02157be848a

SHA1:

eaa640aced911a4dde2bbac13b2511e5b2daca9f

Base64:

66qH