Unicode Finder

"뫎" U+BACE(HANGUL SYLLABLE MWALM)

U+BACE
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MWALM

Programming

C
\uBACE
JavaScript
\uBACE
Java
\uBACE
Json
\uBACE
Python
\uBACE
Perl
\x{BACE}
PHP
\x{BACE}
Ruby
\u{BACE}
Rust
\u{BACE}
Go
\uBACE

Web

CSS
\00BACE
HtmlDecimal
뫎
HtmlHexadecimal
뫎
Url
%EB%AB%8E

Code

MD5
0008ca7e3394a2700532f9ee81aae5bf
Sha1
ac3b61b5100c4c4391294c576a0cb010c3d7ae86
Base64
66uO

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBACE';
console.log(char);  // Output: 뫎

Java:

char c = '\uBACE';
System.out.println(c);  // Output: 뫎

JSON:

{"text": "\uBACE"}  // Value: 뫎

Python:

char = '\uBACE'
print(char)  # Output: 뫎

Perl:

my $char = "\x{BACE}";
print $char;  # Output: 뫎

PHP:

$char = "\x{BACE}";
echo $char;  // Output: 뫎

Ruby:

char = "\u{BACE}"
puts char  # Output: 뫎

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47822;</p>  <!-- Display: 뫎 -->

HTML Hexadecimal:

<p>HTML hex: &#xBACE;</p>  <!-- Display: 뫎 -->

URL Encoding:

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

Encodings

MD5:

0008ca7e3394a2700532f9ee81aae5bf

SHA1:

ac3b61b5100c4c4391294c576a0cb010c3d7ae86

Base64:

66uO