Unicode Finder

"뭰" U+BB70(HANGUL SYLLABLE MWEN)

U+BB70
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MWEN

Programming

C
\uBB70
JavaScript
\uBB70
Java
\uBB70
Json
\uBB70
Python
\uBB70
Perl
\x{BB70}
PHP
\x{BB70}
Ruby
\u{BB70}
Rust
\u{BB70}
Go
\uBB70

Web

CSS
\00BB70
HtmlDecimal
뭰
HtmlHexadecimal
뭰
Url
%EB%AD%B0

Code

MD5
fba6f1caee55bb17cd0391e06a41c714
Sha1
a83beb23f63e821b7d0e88cd7ee312b5f00cb8d9
Base64
662w

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBB70';
console.log(char);  // Output: 뭰

Java:

char c = '\uBB70';
System.out.println(c);  // Output: 뭰

JSON:

{"text": "\uBB70"}  // Value: 뭰

Python:

char = '\uBB70'
print(char)  # Output: 뭰

Perl:

my $char = "\x{BB70}";
print $char;  # Output: 뭰

PHP:

$char = "\x{BB70}";
echo $char;  // Output: 뭰

Ruby:

char = "\u{BB70}"
puts char  # Output: 뭰

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47984;</p>  <!-- Display: 뭰 -->

HTML Hexadecimal:

<p>HTML hex: &#xBB70;</p>  <!-- Display: 뭰 -->

URL Encoding:

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

Encodings

MD5:

fba6f1caee55bb17cd0391e06a41c714

SHA1:

a83beb23f63e821b7d0e88cd7ee312b5f00cb8d9

Base64:

662w