Unicode Finder

"먬" U+BA2C(HANGUL SYLLABLE MYAEM)

U+BA2C
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MYAEM

Programming

C
\uBA2C
JavaScript
\uBA2C
Java
\uBA2C
Json
\uBA2C
Python
\uBA2C
Perl
\x{BA2C}
PHP
\x{BA2C}
Ruby
\u{BA2C}
Rust
\u{BA2C}
Go
\uBA2C

Web

CSS
\00BA2C
HtmlDecimal
먬
HtmlHexadecimal
먬
Url
%EB%A8%AC

Code

MD5
ababe675b06bb19f200e9b3b0d5d3b7b
Sha1
2c9a0440b870b321cc2904837f50ea3fa0dac7da
Base64
66is

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBA2C';
console.log(char);  // Output: 먬

Java:

char c = '\uBA2C';
System.out.println(c);  // Output: 먬

JSON:

{"text": "\uBA2C"}  // Value: 먬

Python:

char = '\uBA2C'
print(char)  # Output: 먬

Perl:

my $char = "\x{BA2C}";
print $char;  # Output: 먬

PHP:

$char = "\x{BA2C}";
echo $char;  // Output: 먬

Ruby:

char = "\u{BA2C}"
puts char  # Output: 먬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47660;</p>  <!-- Display: 먬 -->

HTML Hexadecimal:

<p>HTML hex: &#xBA2C;</p>  <!-- Display: 먬 -->

URL Encoding:

// 먬 URL encoding
https://unicodefinder.com/search.php?query=%EB%A8%AC

Encodings

MD5:

ababe675b06bb19f200e9b3b0d5d3b7b

SHA1:

2c9a0440b870b321cc2904837f50ea3fa0dac7da

Base64:

66is