Unicode Finder

"멖" U+BA56(HANGUL SYLLABLE MEGG)

U+BA56
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MEGG

Programming

C
\uBA56
JavaScript
\uBA56
Java
\uBA56
Json
\uBA56
Python
\uBA56
Perl
\x{BA56}
PHP
\x{BA56}
Ruby
\u{BA56}
Rust
\u{BA56}
Go
\uBA56

Web

CSS
\00BA56
HtmlDecimal
멖
HtmlHexadecimal
멖
Url
%EB%A9%96

Code

MD5
1db55604560b42ef60d7904518a93eed
Sha1
80e89a6ae788b5afbeaefbfa238b6e0501322d91
Base64
66mW

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBA56';
console.log(char);  // Output: 멖

Java:

char c = '\uBA56';
System.out.println(c);  // Output: 멖

JSON:

{"text": "\uBA56"}  // Value: 멖

Python:

char = '\uBA56'
print(char)  # Output: 멖

Perl:

my $char = "\x{BA56}";
print $char;  # Output: 멖

PHP:

$char = "\x{BA56}";
echo $char;  // Output: 멖

Ruby:

char = "\u{BA56}"
puts char  # Output: 멖

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47702;</p>  <!-- Display: 멖 -->

HTML Hexadecimal:

<p>HTML hex: &#xBA56;</p>  <!-- Display: 멖 -->

URL Encoding:

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

Encodings

MD5:

1db55604560b42ef60d7904518a93eed

SHA1:

80e89a6ae788b5afbeaefbfa238b6e0501322d91

Base64:

66mW