Unicode Finder

"먤" U+BA24(HANGUL SYLLABLE MYAEL)

U+BA24
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MYAEL

Programming

C
\uBA24
JavaScript
\uBA24
Java
\uBA24
Json
\uBA24
Python
\uBA24
Perl
\x{BA24}
PHP
\x{BA24}
Ruby
\u{BA24}
Rust
\u{BA24}
Go
\uBA24

Web

CSS
\00BA24
HtmlDecimal
먤
HtmlHexadecimal
먤
Url
%EB%A8%A4

Code

MD5
d9868cc0ada0a44eeeb61ff0f977d742
Sha1
f75595977670e2870c2682f80fc8044419095198
Base64
66ik

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBA24';
console.log(char);  // Output: 먤

Java:

char c = '\uBA24';
System.out.println(c);  // Output: 먤

JSON:

{"text": "\uBA24"}  // Value: 먤

Python:

char = '\uBA24'
print(char)  # Output: 먤

Perl:

my $char = "\x{BA24}";
print $char;  # Output: 먤

PHP:

$char = "\x{BA24}";
echo $char;  // Output: 먤

Ruby:

char = "\u{BA24}"
puts char  # Output: 먤

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47652;</p>  <!-- Display: 먤 -->

HTML Hexadecimal:

<p>HTML hex: &#xBA24;</p>  <!-- Display: 먤 -->

URL Encoding:

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

Encodings

MD5:

d9868cc0ada0a44eeeb61ff0f977d742

SHA1:

f75595977670e2870c2682f80fc8044419095198

Base64:

66ik