Unicode Finder

"뫇" U+BAC7(HANGUL SYLLABLE MWAGS)

U+BAC7
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MWAGS

Programming

C
\uBAC7
JavaScript
\uBAC7
Java
\uBAC7
Json
\uBAC7
Python
\uBAC7
Perl
\x{BAC7}
PHP
\x{BAC7}
Ruby
\u{BAC7}
Rust
\u{BAC7}
Go
\uBAC7

Web

CSS
\00BAC7
HtmlDecimal
뫇
HtmlHexadecimal
뫇
Url
%EB%AB%87

Code

MD5
8915bbe9709a321e2ea4a9bced640aa6
Sha1
cfbeb88e646862b938d352b24d1098dfb79d60fb
Base64
66uH

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBAC7';
console.log(char);  // Output: 뫇

Java:

char c = '\uBAC7';
System.out.println(c);  // Output: 뫇

JSON:

{"text": "\uBAC7"}  // Value: 뫇

Python:

char = '\uBAC7'
print(char)  # Output: 뫇

Perl:

my $char = "\x{BAC7}";
print $char;  # Output: 뫇

PHP:

$char = "\x{BAC7}";
echo $char;  // Output: 뫇

Ruby:

char = "\u{BAC7}"
puts char  # Output: 뫇

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47815;</p>  <!-- Display: 뫇 -->

HTML Hexadecimal:

<p>HTML hex: &#xBAC7;</p>  <!-- Display: 뫇 -->

URL Encoding:

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

Encodings

MD5:

8915bbe9709a321e2ea4a9bced640aa6

SHA1:

cfbeb88e646862b938d352b24d1098dfb79d60fb

Base64:

66uH