Unicode Finder

"뮐" U+BB90(HANGUL SYLLABLE MWIL)

U+BB90
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MWIL

Programming

C
\uBB90
JavaScript
\uBB90
Java
\uBB90
Json
\uBB90
Python
\uBB90
Perl
\x{BB90}
PHP
\x{BB90}
Ruby
\u{BB90}
Rust
\u{BB90}
Go
\uBB90

Web

CSS
\00BB90
HtmlDecimal
뮐
HtmlHexadecimal
뮐
Url
%EB%AE%90

Code

MD5
d8731fdbc426756e73662fbe0371cb07
Sha1
e160b889fd308b7023b16d5348dc4ddce3680254
Base64
666Q

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBB90';
console.log(char);  // Output: 뮐

Java:

char c = '\uBB90';
System.out.println(c);  // Output: 뮐

JSON:

{"text": "\uBB90"}  // Value: 뮐

Python:

char = '\uBB90'
print(char)  # Output: 뮐

Perl:

my $char = "\x{BB90}";
print $char;  # Output: 뮐

PHP:

$char = "\x{BB90}";
echo $char;  // Output: 뮐

Ruby:

char = "\u{BB90}"
puts char  # Output: 뮐

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48016;</p>  <!-- Display: 뮐 -->

HTML Hexadecimal:

<p>HTML hex: &#xBB90;</p>  <!-- Display: 뮐 -->

URL Encoding:

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

Encodings

MD5:

d8731fdbc426756e73662fbe0371cb07

SHA1:

e160b889fd308b7023b16d5348dc4ddce3680254

Base64:

666Q