Unicode Finder

"맬" U+B9EC(HANGUL SYLLABLE MAEL)

U+B9EC
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MAEL

Programming

C
\uB9EC
JavaScript
\uB9EC
Java
\uB9EC
Json
\uB9EC
Python
\uB9EC
Perl
\x{B9EC}
PHP
\x{B9EC}
Ruby
\u{B9EC}
Rust
\u{B9EC}
Go
\uB9EC

Web

CSS
\00B9EC
HtmlDecimal
맬
HtmlHexadecimal
맬
Url
%EB%A7%AC

Code

MD5
0fd9c001945eb61c66c9a0e9f4364412
Sha1
5cc8ffd9bfb8e3e3d83492cf90a7cd6217b284dd
Base64
66es

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB9EC';
console.log(char);  // Output: 맬

Java:

char c = '\uB9EC';
System.out.println(c);  // Output: 맬

JSON:

{"text": "\uB9EC"}  // Value: 맬

Python:

char = '\uB9EC'
print(char)  # Output: 맬

Perl:

my $char = "\x{B9EC}";
print $char;  # Output: 맬

PHP:

$char = "\x{B9EC}";
echo $char;  // Output: 맬

Ruby:

char = "\u{B9EC}"
puts char  # Output: 맬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47596;</p>  <!-- Display: 맬 -->

HTML Hexadecimal:

<p>HTML hex: &#xB9EC;</p>  <!-- Display: 맬 -->

URL Encoding:

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

Encodings

MD5:

0fd9c001945eb61c66c9a0e9f4364412

SHA1:

5cc8ffd9bfb8e3e3d83492cf90a7cd6217b284dd

Base64:

66es