Unicode Finder

"뭇" U+BB47(HANGUL SYLLABLE MUS)

U+BB47
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MUS

Programming

C
\uBB47
JavaScript
\uBB47
Java
\uBB47
Json
\uBB47
Python
\uBB47
Perl
\x{BB47}
PHP
\x{BB47}
Ruby
\u{BB47}
Rust
\u{BB47}
Go
\uBB47

Web

CSS
\00BB47
HtmlDecimal
뭇
HtmlHexadecimal
뭇
Url
%EB%AD%87

Code

MD5
3b78fc9bc8d41fc3a2a3cb21a4505f88
Sha1
a69ba4a63ddf5f711792af898d3d9056c966dc9d
Base64
662H

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBB47';
console.log(char);  // Output: 뭇

Java:

char c = '\uBB47';
System.out.println(c);  // Output: 뭇

JSON:

{"text": "\uBB47"}  // Value: 뭇

Python:

char = '\uBB47'
print(char)  # Output: 뭇

Perl:

my $char = "\x{BB47}";
print $char;  # Output: 뭇

PHP:

$char = "\x{BB47}";
echo $char;  // Output: 뭇

Ruby:

char = "\u{BB47}"
puts char  # Output: 뭇

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47943;</p>  <!-- Display: 뭇 -->

HTML Hexadecimal:

<p>HTML hex: &#xBB47;</p>  <!-- Display: 뭇 -->

URL Encoding:

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

Encodings

MD5:

3b78fc9bc8d41fc3a2a3cb21a4505f88

SHA1:

a69ba4a63ddf5f711792af898d3d9056c966dc9d

Base64:

662H