Unicode Finder

"뭭" U+BB6D(HANGUL SYLLABLE MWEG)

U+BB6D
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MWEG

Programming

C
\uBB6D
JavaScript
\uBB6D
Java
\uBB6D
Json
\uBB6D
Python
\uBB6D
Perl
\x{BB6D}
PHP
\x{BB6D}
Ruby
\u{BB6D}
Rust
\u{BB6D}
Go
\uBB6D

Web

CSS
\00BB6D
HtmlDecimal
뭭
HtmlHexadecimal
뭭
Url
%EB%AD%AD

Code

MD5
6f84125534ee8ad94132b079def81e69
Sha1
f5f6f87441cdb54585798578590c754fa20c8ab0
Base64
662t

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBB6D';
console.log(char);  // Output: 뭭

Java:

char c = '\uBB6D';
System.out.println(c);  // Output: 뭭

JSON:

{"text": "\uBB6D"}  // Value: 뭭

Python:

char = '\uBB6D'
print(char)  # Output: 뭭

Perl:

my $char = "\x{BB6D}";
print $char;  # Output: 뭭

PHP:

$char = "\x{BB6D}";
echo $char;  // Output: 뭭

Ruby:

char = "\u{BB6D}"
puts char  # Output: 뭭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47981;</p>  <!-- Display: 뭭 -->

HTML Hexadecimal:

<p>HTML hex: &#xBB6D;</p>  <!-- Display: 뭭 -->

URL Encoding:

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

Encodings

MD5:

6f84125534ee8ad94132b079def81e69

SHA1:

f5f6f87441cdb54585798578590c754fa20c8ab0

Base64:

662t