Unicode Finder

"뫏" U+BACF(HANGUL SYLLABLE MWALB)

U+BACF
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MWALB

Programming

C
\uBACF
JavaScript
\uBACF
Java
\uBACF
Json
\uBACF
Python
\uBACF
Perl
\x{BACF}
PHP
\x{BACF}
Ruby
\u{BACF}
Rust
\u{BACF}
Go
\uBACF

Web

CSS
\00BACF
HtmlDecimal
뫏
HtmlHexadecimal
뫏
Url
%EB%AB%8F

Code

MD5
a34efde9ea8b2ed6986c852d9dd11065
Sha1
6fe7fcde43151b502a42db0b10bd7005a667662b
Base64
66uP

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBACF';
console.log(char);  // Output: 뫏

Java:

char c = '\uBACF';
System.out.println(c);  // Output: 뫏

JSON:

{"text": "\uBACF"}  // Value: 뫏

Python:

char = '\uBACF'
print(char)  # Output: 뫏

Perl:

my $char = "\x{BACF}";
print $char;  # Output: 뫏

PHP:

$char = "\x{BACF}";
echo $char;  // Output: 뫏

Ruby:

char = "\u{BACF}"
puts char  # Output: 뫏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47823;</p>  <!-- Display: 뫏 -->

HTML Hexadecimal:

<p>HTML hex: &#xBACF;</p>  <!-- Display: 뫏 -->

URL Encoding:

// 뫏 URL encoding
https://unicodefinder.com/search.php?query=%EB%AB%8F

Encodings

MD5:

a34efde9ea8b2ed6986c852d9dd11065

SHA1:

6fe7fcde43151b502a42db0b10bd7005a667662b

Base64:

66uP