Unicode Finder

"뮅" U+BB85(HANGUL SYLLABLE MWET)

U+BB85
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MWET

Programming

C
\uBB85
JavaScript
\uBB85
Java
\uBB85
Json
\uBB85
Python
\uBB85
Perl
\x{BB85}
PHP
\x{BB85}
Ruby
\u{BB85}
Rust
\u{BB85}
Go
\uBB85

Web

CSS
\00BB85
HtmlDecimal
뮅
HtmlHexadecimal
뮅
Url
%EB%AE%85

Code

MD5
adafcdd84e579cf263cd9062bc4f2184
Sha1
4ee86c5f3d08d07d09b8e7fe3412e8e1ef2573eb
Base64
666F

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBB85';
console.log(char);  // Output: 뮅

Java:

char c = '\uBB85';
System.out.println(c);  // Output: 뮅

JSON:

{"text": "\uBB85"}  // Value: 뮅

Python:

char = '\uBB85'
print(char)  # Output: 뮅

Perl:

my $char = "\x{BB85}";
print $char;  # Output: 뮅

PHP:

$char = "\x{BB85}";
echo $char;  // Output: 뮅

Ruby:

char = "\u{BB85}"
puts char  # Output: 뮅

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48005;</p>  <!-- Display: 뮅 -->

HTML Hexadecimal:

<p>HTML hex: &#xBB85;</p>  <!-- Display: 뮅 -->

URL Encoding:

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

Encodings

MD5:

adafcdd84e579cf263cd9062bc4f2184

SHA1:

4ee86c5f3d08d07d09b8e7fe3412e8e1ef2573eb

Base64:

666F