Unicode Finder

"뮏" U+BB8F(HANGUL SYLLABLE MWID)

U+BB8F
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MWID

Programming

C
\uBB8F
JavaScript
\uBB8F
Java
\uBB8F
Json
\uBB8F
Python
\uBB8F
Perl
\x{BB8F}
PHP
\x{BB8F}
Ruby
\u{BB8F}
Rust
\u{BB8F}
Go
\uBB8F

Web

CSS
\00BB8F
HtmlDecimal
뮏
HtmlHexadecimal
뮏
Url
%EB%AE%8F

Code

MD5
0d7020dc8eb140277bcf8c7e82e69f35
Sha1
788593788ab9b0e0306e037ab91100169b5ea201
Base64
666P

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBB8F';
console.log(char);  // Output: 뮏

Java:

char c = '\uBB8F';
System.out.println(c);  // Output: 뮏

JSON:

{"text": "\uBB8F"}  // Value: 뮏

Python:

char = '\uBB8F'
print(char)  # Output: 뮏

Perl:

my $char = "\x{BB8F}";
print $char;  # Output: 뮏

PHP:

$char = "\x{BB8F}";
echo $char;  // Output: 뮏

Ruby:

char = "\u{BB8F}"
puts char  # Output: 뮏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48015;</p>  <!-- Display: 뮏 -->

HTML Hexadecimal:

<p>HTML hex: &#xBB8F;</p>  <!-- Display: 뮏 -->

URL Encoding:

// 뮏 URL encoding
https://unicodefinder.com/search.php?query=%EB%AE%8F

Encodings

MD5:

0d7020dc8eb140277bcf8c7e82e69f35

SHA1:

788593788ab9b0e0306e037ab91100169b5ea201

Base64:

666P