Unicode Finder

"멾" U+BA7E(HANGUL SYLLABLE MYEOLP)

U+BA7E
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MYEOLP

Programming

C
\uBA7E
JavaScript
\uBA7E
Java
\uBA7E
Json
\uBA7E
Python
\uBA7E
Perl
\x{BA7E}
PHP
\x{BA7E}
Ruby
\u{BA7E}
Rust
\u{BA7E}
Go
\uBA7E

Web

CSS
\00BA7E
HtmlDecimal
멾
HtmlHexadecimal
멾
Url
%EB%A9%BE

Code

MD5
c4010a1d5ed9adbeeb8f174ddf7eafad
Sha1
feb4bfece8704b25a13c23edcf3a43bb467d154b
Base64
66m+

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBA7E';
console.log(char);  // Output: 멾

Java:

char c = '\uBA7E';
System.out.println(c);  // Output: 멾

JSON:

{"text": "\uBA7E"}  // Value: 멾

Python:

char = '\uBA7E'
print(char)  # Output: 멾

Perl:

my $char = "\x{BA7E}";
print $char;  # Output: 멾

PHP:

$char = "\x{BA7E}";
echo $char;  // Output: 멾

Ruby:

char = "\u{BA7E}"
puts char  # Output: 멾

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47742;</p>  <!-- Display: 멾 -->

HTML Hexadecimal:

<p>HTML hex: &#xBA7E;</p>  <!-- Display: 멾 -->

URL Encoding:

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

Encodings

MD5:

c4010a1d5ed9adbeeb8f174ddf7eafad

SHA1:

feb4bfece8704b25a13c23edcf3a43bb467d154b

Base64:

66m+