Unicode Finder

"뮮" U+BBAE(HANGUL SYLLABLE MYULM)

U+BBAE
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MYULM

Programming

C
\uBBAE
JavaScript
\uBBAE
Java
\uBBAE
Json
\uBBAE
Python
\uBBAE
Perl
\x{BBAE}
PHP
\x{BBAE}
Ruby
\u{BBAE}
Rust
\u{BBAE}
Go
\uBBAE

Web

CSS
\00BBAE
HtmlDecimal
뮮
HtmlHexadecimal
뮮
Url
%EB%AE%AE

Code

MD5
540c63e4b57440593adda2933630dddb
Sha1
98fd3b6ab7d94fbade00e9eeb165824e3e71c326
Base64
666u

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBBAE';
console.log(char);  // Output: 뮮

Java:

char c = '\uBBAE';
System.out.println(c);  // Output: 뮮

JSON:

{"text": "\uBBAE"}  // Value: 뮮

Python:

char = '\uBBAE'
print(char)  # Output: 뮮

Perl:

my $char = "\x{BBAE}";
print $char;  # Output: 뮮

PHP:

$char = "\x{BBAE}";
echo $char;  // Output: 뮮

Ruby:

char = "\u{BBAE}"
puts char  # Output: 뮮

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48046;</p>  <!-- Display: 뮮 -->

HTML Hexadecimal:

<p>HTML hex: &#xBBAE;</p>  <!-- Display: 뮮 -->

URL Encoding:

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

Encodings

MD5:

540c63e4b57440593adda2933630dddb

SHA1:

98fd3b6ab7d94fbade00e9eeb165824e3e71c326

Base64:

666u