Unicode Finder

"뫲" U+BAF2(HANGUL SYLLABLE MWAEBS)

U+BAF2
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MWAEBS

Programming

C
\uBAF2
JavaScript
\uBAF2
Java
\uBAF2
Json
\uBAF2
Python
\uBAF2
Perl
\x{BAF2}
PHP
\x{BAF2}
Ruby
\u{BAF2}
Rust
\u{BAF2}
Go
\uBAF2

Web

CSS
\00BAF2
HtmlDecimal
뫲
HtmlHexadecimal
뫲
Url
%EB%AB%B2

Code

MD5
131d54cd0ee9b558ed4fd063bccfb00a
Sha1
7f6dc3d516824f3fd0814f889995de433e59329d
Base64
66uy

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBAF2';
console.log(char);  // Output: 뫲

Java:

char c = '\uBAF2';
System.out.println(c);  // Output: 뫲

JSON:

{"text": "\uBAF2"}  // Value: 뫲

Python:

char = '\uBAF2'
print(char)  # Output: 뫲

Perl:

my $char = "\x{BAF2}";
print $char;  # Output: 뫲

PHP:

$char = "\x{BAF2}";
echo $char;  // Output: 뫲

Ruby:

char = "\u{BAF2}"
puts char  # Output: 뫲

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47858;</p>  <!-- Display: 뫲 -->

HTML Hexadecimal:

<p>HTML hex: &#xBAF2;</p>  <!-- Display: 뫲 -->

URL Encoding:

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

Encodings

MD5:

131d54cd0ee9b558ed4fd063bccfb00a

SHA1:

7f6dc3d516824f3fd0814f889995de433e59329d

Base64:

66uy