Unicode Finder

"뮋" U+BB8B(HANGUL SYLLABLE MWIGS)

U+BB8B
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MWIGS

Programming

C
\uBB8B
JavaScript
\uBB8B
Java
\uBB8B
Json
\uBB8B
Python
\uBB8B
Perl
\x{BB8B}
PHP
\x{BB8B}
Ruby
\u{BB8B}
Rust
\u{BB8B}
Go
\uBB8B

Web

CSS
\00BB8B
HtmlDecimal
뮋
HtmlHexadecimal
뮋
Url
%EB%AE%8B

Code

MD5
dbf30ceb466648a745e6850d8f193cf4
Sha1
1d6f009ddb08cbd1941ce03e4d06d77883b2364e
Base64
666L

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBB8B';
console.log(char);  // Output: 뮋

Java:

char c = '\uBB8B';
System.out.println(c);  // Output: 뮋

JSON:

{"text": "\uBB8B"}  // Value: 뮋

Python:

char = '\uBB8B'
print(char)  # Output: 뮋

Perl:

my $char = "\x{BB8B}";
print $char;  # Output: 뮋

PHP:

$char = "\x{BB8B}";
echo $char;  // Output: 뮋

Ruby:

char = "\u{BB8B}"
puts char  # Output: 뮋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48011;</p>  <!-- Display: 뮋 -->

HTML Hexadecimal:

<p>HTML hex: &#xBB8B;</p>  <!-- Display: 뮋 -->

URL Encoding:

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

Encodings

MD5:

dbf30ceb466648a745e6850d8f193cf4

SHA1:

1d6f009ddb08cbd1941ce03e4d06d77883b2364e

Base64:

666L