Unicode Finder

"먌" U+BA0C(HANGUL SYLLABLE MYALS)

U+BA0C
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MYALS

Programming

C
\uBA0C
JavaScript
\uBA0C
Java
\uBA0C
Json
\uBA0C
Python
\uBA0C
Perl
\x{BA0C}
PHP
\x{BA0C}
Ruby
\u{BA0C}
Rust
\u{BA0C}
Go
\uBA0C

Web

CSS
\00BA0C
HtmlDecimal
먌
HtmlHexadecimal
먌
Url
%EB%A8%8C

Code

MD5
d4a7f74b0b7f98aff23836acdb555008
Sha1
3125a101423866e09058c20402e156952c5b6ed9
Base64
66iM

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBA0C';
console.log(char);  // Output: 먌

Java:

char c = '\uBA0C';
System.out.println(c);  // Output: 먌

JSON:

{"text": "\uBA0C"}  // Value: 먌

Python:

char = '\uBA0C'
print(char)  # Output: 먌

Perl:

my $char = "\x{BA0C}";
print $char;  # Output: 먌

PHP:

$char = "\x{BA0C}";
echo $char;  // Output: 먌

Ruby:

char = "\u{BA0C}"
puts char  # Output: 먌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47628;</p>  <!-- Display: 먌 -->

HTML Hexadecimal:

<p>HTML hex: &#xBA0C;</p>  <!-- Display: 먌 -->

URL Encoding:

// 먌 URL encoding
https://unicodefinder.com/search.php?query=%EB%A8%8C

Encodings

MD5:

d4a7f74b0b7f98aff23836acdb555008

SHA1:

3125a101423866e09058c20402e156952c5b6ed9

Base64:

66iM