Unicode Finder

"뮴" U+BBB4(HANGUL SYLLABLE MYUM)

U+BBB4
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MYUM

Programming

C
\uBBB4
JavaScript
\uBBB4
Java
\uBBB4
Json
\uBBB4
Python
\uBBB4
Perl
\x{BBB4}
PHP
\x{BBB4}
Ruby
\u{BBB4}
Rust
\u{BBB4}
Go
\uBBB4

Web

CSS
\00BBB4
HtmlDecimal
뮴
HtmlHexadecimal
뮴
Url
%EB%AE%B4

Code

MD5
84d93e16900773749192403e521b8e14
Sha1
016ee572a3c094e16d5dc622a79a249b9eb682b0
Base64
6660

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBBB4';
console.log(char);  // Output: 뮴

Java:

char c = '\uBBB4';
System.out.println(c);  // Output: 뮴

JSON:

{"text": "\uBBB4"}  // Value: 뮴

Python:

char = '\uBBB4'
print(char)  # Output: 뮴

Perl:

my $char = "\x{BBB4}";
print $char;  # Output: 뮴

PHP:

$char = "\x{BBB4}";
echo $char;  // Output: 뮴

Ruby:

char = "\u{BBB4}"
puts char  # Output: 뮴

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48052;</p>  <!-- Display: 뮴 -->

HTML Hexadecimal:

<p>HTML hex: &#xBBB4;</p>  <!-- Display: 뮴 -->

URL Encoding:

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

Encodings

MD5:

84d93e16900773749192403e521b8e14

SHA1:

016ee572a3c094e16d5dc622a79a249b9eb682b0

Base64:

6660