Unicode Finder

"뮤" U+BBA4(HANGUL SYLLABLE MYU)

U+BBA4
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MYU

Programming

C
\uBBA4
JavaScript
\uBBA4
Java
\uBBA4
Json
\uBBA4
Python
\uBBA4
Perl
\x{BBA4}
PHP
\x{BBA4}
Ruby
\u{BBA4}
Rust
\u{BBA4}
Go
\uBBA4

Web

CSS
\00BBA4
HtmlDecimal
뮤
HtmlHexadecimal
뮤
Url
%EB%AE%A4

Code

MD5
f49f23cbf697a87cd0c37f1eaed912ee
Sha1
7cadd460f0144e550e8ed458ae5119ea12a378ee
Base64
666k

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBBA4';
console.log(char);  // Output: 뮤

Java:

char c = '\uBBA4';
System.out.println(c);  // Output: 뮤

JSON:

{"text": "\uBBA4"}  // Value: 뮤

Python:

char = '\uBBA4'
print(char)  # Output: 뮤

Perl:

my $char = "\x{BBA4}";
print $char;  # Output: 뮤

PHP:

$char = "\x{BBA4}";
echo $char;  // Output: 뮤

Ruby:

char = "\u{BBA4}"
puts char  # Output: 뮤

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48036;</p>  <!-- Display: 뮤 -->

HTML Hexadecimal:

<p>HTML hex: &#xBBA4;</p>  <!-- Display: 뮤 -->

URL Encoding:

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

Encodings

MD5:

f49f23cbf697a87cd0c37f1eaed912ee

SHA1:

7cadd460f0144e550e8ed458ae5119ea12a378ee

Base64:

666k