Unicode Finder

"뫆" U+BAC6(HANGUL SYLLABLE MWAGG)

U+BAC6
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MWAGG

Programming

C
\uBAC6
JavaScript
\uBAC6
Java
\uBAC6
Json
\uBAC6
Python
\uBAC6
Perl
\x{BAC6}
PHP
\x{BAC6}
Ruby
\u{BAC6}
Rust
\u{BAC6}
Go
\uBAC6

Web

CSS
\00BAC6
HtmlDecimal
뫆
HtmlHexadecimal
뫆
Url
%EB%AB%86

Code

MD5
400b7fcc1ef850d78e16bc64e91e392e
Sha1
699a9bdfcd4ef8c22fa416a1b2b08ae89dba0027
Base64
66uG

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBAC6';
console.log(char);  // Output: 뫆

Java:

char c = '\uBAC6';
System.out.println(c);  // Output: 뫆

JSON:

{"text": "\uBAC6"}  // Value: 뫆

Python:

char = '\uBAC6'
print(char)  # Output: 뫆

Perl:

my $char = "\x{BAC6}";
print $char;  # Output: 뫆

PHP:

$char = "\x{BAC6}";
echo $char;  // Output: 뫆

Ruby:

char = "\u{BAC6}"
puts char  # Output: 뫆

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47814;</p>  <!-- Display: 뫆 -->

HTML Hexadecimal:

<p>HTML hex: &#xBAC6;</p>  <!-- Display: 뫆 -->

URL Encoding:

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

Encodings

MD5:

400b7fcc1ef850d78e16bc64e91e392e

SHA1:

699a9bdfcd4ef8c22fa416a1b2b08ae89dba0027

Base64:

66uG