Unicode Finder

"뮄" U+BB84(HANGUL SYLLABLE MWEK)

U+BB84
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MWEK

Programming

C
\uBB84
JavaScript
\uBB84
Java
\uBB84
Json
\uBB84
Python
\uBB84
Perl
\x{BB84}
PHP
\x{BB84}
Ruby
\u{BB84}
Rust
\u{BB84}
Go
\uBB84

Web

CSS
\00BB84
HtmlDecimal
뮄
HtmlHexadecimal
뮄
Url
%EB%AE%84

Code

MD5
d494c853e93e725ba4e7b199c0dfa714
Sha1
fa9d5be9baf29e89f3ba3a2f3da24a465b063d0c
Base64
666E

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBB84';
console.log(char);  // Output: 뮄

Java:

char c = '\uBB84';
System.out.println(c);  // Output: 뮄

JSON:

{"text": "\uBB84"}  // Value: 뮄

Python:

char = '\uBB84'
print(char)  # Output: 뮄

Perl:

my $char = "\x{BB84}";
print $char;  # Output: 뮄

PHP:

$char = "\x{BB84}";
echo $char;  // Output: 뮄

Ruby:

char = "\u{BB84}"
puts char  # Output: 뮄

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48004;</p>  <!-- Display: 뮄 -->

HTML Hexadecimal:

<p>HTML hex: &#xBB84;</p>  <!-- Display: 뮄 -->

URL Encoding:

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

Encodings

MD5:

d494c853e93e725ba4e7b199c0dfa714

SHA1:

fa9d5be9baf29e89f3ba3a2f3da24a465b063d0c

Base64:

666E