Unicode Finder

"뮆" U+BB86(HANGUL SYLLABLE MWEP)

U+BB86
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MWEP

Programming

C
\uBB86
JavaScript
\uBB86
Java
\uBB86
Json
\uBB86
Python
\uBB86
Perl
\x{BB86}
PHP
\x{BB86}
Ruby
\u{BB86}
Rust
\u{BB86}
Go
\uBB86

Web

CSS
\00BB86
HtmlDecimal
뮆
HtmlHexadecimal
뮆
Url
%EB%AE%86

Code

MD5
b3d87565109ef0c6a680492159a520e8
Sha1
d224f76394ad7e8aa3fe0e2dbab9c1e7fe7f650c
Base64
666G

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBB86';
console.log(char);  // Output: 뮆

Java:

char c = '\uBB86';
System.out.println(c);  // Output: 뮆

JSON:

{"text": "\uBB86"}  // Value: 뮆

Python:

char = '\uBB86'
print(char)  # Output: 뮆

Perl:

my $char = "\x{BB86}";
print $char;  # Output: 뮆

PHP:

$char = "\x{BB86}";
echo $char;  // Output: 뮆

Ruby:

char = "\u{BB86}"
puts char  # Output: 뮆

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48006;</p>  <!-- Display: 뮆 -->

HTML Hexadecimal:

<p>HTML hex: &#xBB86;</p>  <!-- Display: 뮆 -->

URL Encoding:

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

Encodings

MD5:

b3d87565109ef0c6a680492159a520e8

SHA1:

d224f76394ad7e8aa3fe0e2dbab9c1e7fe7f650c

Base64:

666G