Unicode Finder

"뮩" U+BBA9(HANGUL SYLLABLE MYUNJ)

U+BBA9
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MYUNJ

Programming

C
\uBBA9
JavaScript
\uBBA9
Java
\uBBA9
Json
\uBBA9
Python
\uBBA9
Perl
\x{BBA9}
PHP
\x{BBA9}
Ruby
\u{BBA9}
Rust
\u{BBA9}
Go
\uBBA9

Web

CSS
\00BBA9
HtmlDecimal
뮩
HtmlHexadecimal
뮩
Url
%EB%AE%A9

Code

MD5
2357b9316574c6e0eba432a7ef809c6a
Sha1
123745fb7ae3c9218e7e2063745932e1ea5e3e19
Base64
666p

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBBA9';
console.log(char);  // Output: 뮩

Java:

char c = '\uBBA9';
System.out.println(c);  // Output: 뮩

JSON:

{"text": "\uBBA9"}  // Value: 뮩

Python:

char = '\uBBA9'
print(char)  # Output: 뮩

Perl:

my $char = "\x{BBA9}";
print $char;  # Output: 뮩

PHP:

$char = "\x{BBA9}";
echo $char;  // Output: 뮩

Ruby:

char = "\u{BBA9}"
puts char  # Output: 뮩

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48041;</p>  <!-- Display: 뮩 -->

HTML Hexadecimal:

<p>HTML hex: &#xBBA9;</p>  <!-- Display: 뮩 -->

URL Encoding:

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

Encodings

MD5:

2357b9316574c6e0eba432a7ef809c6a

SHA1:

123745fb7ae3c9218e7e2063745932e1ea5e3e19

Base64:

666p