Unicode Finder

"뭫" U+BB6B(HANGUL SYLLABLE MWEOH)

U+BB6B
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MWEOH

Programming

C
\uBB6B
JavaScript
\uBB6B
Java
\uBB6B
Json
\uBB6B
Python
\uBB6B
Perl
\x{BB6B}
PHP
\x{BB6B}
Ruby
\u{BB6B}
Rust
\u{BB6B}
Go
\uBB6B

Web

CSS
\00BB6B
HtmlDecimal
뭫
HtmlHexadecimal
뭫
Url
%EB%AD%AB

Code

MD5
1eef02231637e944fce8f599e84b5a96
Sha1
b95eb53df0358add68542ea70d5e39aaafd7892f
Base64
662r

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBB6B';
console.log(char);  // Output: 뭫

Java:

char c = '\uBB6B';
System.out.println(c);  // Output: 뭫

JSON:

{"text": "\uBB6B"}  // Value: 뭫

Python:

char = '\uBB6B'
print(char)  # Output: 뭫

Perl:

my $char = "\x{BB6B}";
print $char;  # Output: 뭫

PHP:

$char = "\x{BB6B}";
echo $char;  // Output: 뭫

Ruby:

char = "\u{BB6B}"
puts char  # Output: 뭫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47979;</p>  <!-- Display: 뭫 -->

HTML Hexadecimal:

<p>HTML hex: &#xBB6B;</p>  <!-- Display: 뭫 -->

URL Encoding:

// 뭫 URL encoding
https://unicodefinder.com/search.php?query=%EB%AD%AB

Encodings

MD5:

1eef02231637e944fce8f599e84b5a96

SHA1:

b95eb53df0358add68542ea70d5e39aaafd7892f

Base64:

662r