Unicode Finder

"뮣" U+BBA3(HANGUL SYLLABLE MWIH)

U+BBA3
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MWIH

Programming

C
\uBBA3
JavaScript
\uBBA3
Java
\uBBA3
Json
\uBBA3
Python
\uBBA3
Perl
\x{BBA3}
PHP
\x{BBA3}
Ruby
\u{BBA3}
Rust
\u{BBA3}
Go
\uBBA3

Web

CSS
\00BBA3
HtmlDecimal
뮣
HtmlHexadecimal
뮣
Url
%EB%AE%A3

Code

MD5
96cbe0edce602ee48086fc7a892d999e
Sha1
fe2c072862e211561591089084c4f62de0cb0b36
Base64
666j

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBBA3';
console.log(char);  // Output: 뮣

Java:

char c = '\uBBA3';
System.out.println(c);  // Output: 뮣

JSON:

{"text": "\uBBA3"}  // Value: 뮣

Python:

char = '\uBBA3'
print(char)  # Output: 뮣

Perl:

my $char = "\x{BBA3}";
print $char;  # Output: 뮣

PHP:

$char = "\x{BBA3}";
echo $char;  // Output: 뮣

Ruby:

char = "\u{BBA3}"
puts char  # Output: 뮣

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48035;</p>  <!-- Display: 뮣 -->

HTML Hexadecimal:

<p>HTML hex: &#xBBA3;</p>  <!-- Display: 뮣 -->

URL Encoding:

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

Encodings

MD5:

96cbe0edce602ee48086fc7a892d999e

SHA1:

fe2c072862e211561591089084c4f62de0cb0b36

Base64:

666j