Unicode Finder

"뫫" U+BAEB(HANGUL SYLLABLE MWAELB)

U+BAEB
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MWAELB

Programming

C
\uBAEB
JavaScript
\uBAEB
Java
\uBAEB
Json
\uBAEB
Python
\uBAEB
Perl
\x{BAEB}
PHP
\x{BAEB}
Ruby
\u{BAEB}
Rust
\u{BAEB}
Go
\uBAEB

Web

CSS
\00BAEB
HtmlDecimal
뫫
HtmlHexadecimal
뫫
Url
%EB%AB%AB

Code

MD5
18ce536fe94ffe8034818e13b1da4ef5
Sha1
14dddffe6da4f5007089d01782e0fc9eb6cf55ea
Base64
66ur

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBAEB';
console.log(char);  // Output: 뫫

Java:

char c = '\uBAEB';
System.out.println(c);  // Output: 뫫

JSON:

{"text": "\uBAEB"}  // Value: 뫫

Python:

char = '\uBAEB'
print(char)  # Output: 뫫

Perl:

my $char = "\x{BAEB}";
print $char;  # Output: 뫫

PHP:

$char = "\x{BAEB}";
echo $char;  // Output: 뫫

Ruby:

char = "\u{BAEB}"
puts char  # Output: 뫫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47851;</p>  <!-- Display: 뫫 -->

HTML Hexadecimal:

<p>HTML hex: &#xBAEB;</p>  <!-- Display: 뫫 -->

URL Encoding:

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

Encodings

MD5:

18ce536fe94ffe8034818e13b1da4ef5

SHA1:

14dddffe6da4f5007089d01782e0fc9eb6cf55ea

Base64:

66ur