Unicode Finder

"뮫" U+BBAB(HANGUL SYLLABLE MYUD)

U+BBAB
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MYUD

Programming

C
\uBBAB
JavaScript
\uBBAB
Java
\uBBAB
Json
\uBBAB
Python
\uBBAB
Perl
\x{BBAB}
PHP
\x{BBAB}
Ruby
\u{BBAB}
Rust
\u{BBAB}
Go
\uBBAB

Web

CSS
\00BBAB
HtmlDecimal
뮫
HtmlHexadecimal
뮫
Url
%EB%AE%AB

Code

MD5
e31be03fac239a39f6249a1885b4be25
Sha1
9b39c35f8595af184e2aa5d974bc0eb8aed6cd7b
Base64
666r

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBBAB';
console.log(char);  // Output: 뮫

Java:

char c = '\uBBAB';
System.out.println(c);  // Output: 뮫

JSON:

{"text": "\uBBAB"}  // Value: 뮫

Python:

char = '\uBBAB'
print(char)  # Output: 뮫

Perl:

my $char = "\x{BBAB}";
print $char;  # Output: 뮫

PHP:

$char = "\x{BBAB}";
echo $char;  // Output: 뮫

Ruby:

char = "\u{BBAB}"
puts char  # Output: 뮫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48043;</p>  <!-- Display: 뮫 -->

HTML Hexadecimal:

<p>HTML hex: &#xBBAB;</p>  <!-- Display: 뮫 -->

URL Encoding:

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

Encodings

MD5:

e31be03fac239a39f6249a1885b4be25

SHA1:

9b39c35f8595af184e2aa5d974bc0eb8aed6cd7b

Base64:

666r