Unicode Finder

"뮯" U+BBAF(HANGUL SYLLABLE MYULB)

U+BBAF
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MYULB

Programming

C
\uBBAF
JavaScript
\uBBAF
Java
\uBBAF
Json
\uBBAF
Python
\uBBAF
Perl
\x{BBAF}
PHP
\x{BBAF}
Ruby
\u{BBAF}
Rust
\u{BBAF}
Go
\uBBAF

Web

CSS
\00BBAF
HtmlDecimal
뮯
HtmlHexadecimal
뮯
Url
%EB%AE%AF

Code

MD5
8617863cdd52d2e57a41e911beb354e1
Sha1
b117baf9791c3615fe56c7bad5ebbe76fa40ec26
Base64
666v

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBBAF';
console.log(char);  // Output: 뮯

Java:

char c = '\uBBAF';
System.out.println(c);  // Output: 뮯

JSON:

{"text": "\uBBAF"}  // Value: 뮯

Python:

char = '\uBBAF'
print(char)  # Output: 뮯

Perl:

my $char = "\x{BBAF}";
print $char;  # Output: 뮯

PHP:

$char = "\x{BBAF}";
echo $char;  // Output: 뮯

Ruby:

char = "\u{BBAF}"
puts char  # Output: 뮯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48047;</p>  <!-- Display: 뮯 -->

HTML Hexadecimal:

<p>HTML hex: &#xBBAF;</p>  <!-- Display: 뮯 -->

URL Encoding:

// 뮯 URL encoding
https://unicodefinder.com/search.php?query=%EB%AE%AF

Encodings

MD5:

8617863cdd52d2e57a41e911beb354e1

SHA1:

b117baf9791c3615fe56c7bad5ebbe76fa40ec26

Base64:

666v