Unicode Finder

"뫈" U+BAC8(HANGUL SYLLABLE MWAN)

U+BAC8
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MWAN

Programming

C
\uBAC8
JavaScript
\uBAC8
Java
\uBAC8
Json
\uBAC8
Python
\uBAC8
Perl
\x{BAC8}
PHP
\x{BAC8}
Ruby
\u{BAC8}
Rust
\u{BAC8}
Go
\uBAC8

Web

CSS
\00BAC8
HtmlDecimal
뫈
HtmlHexadecimal
뫈
Url
%EB%AB%88

Code

MD5
58205a5a2fdeb9c4cbe415d4791f5f07
Sha1
75134ef85b090d48299e9078728ecf077c660a84
Base64
66uI

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBAC8';
console.log(char);  // Output: 뫈

Java:

char c = '\uBAC8';
System.out.println(c);  // Output: 뫈

JSON:

{"text": "\uBAC8"}  // Value: 뫈

Python:

char = '\uBAC8'
print(char)  # Output: 뫈

Perl:

my $char = "\x{BAC8}";
print $char;  # Output: 뫈

PHP:

$char = "\x{BAC8}";
echo $char;  // Output: 뫈

Ruby:

char = "\u{BAC8}"
puts char  # Output: 뫈

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47816;</p>  <!-- Display: 뫈 -->

HTML Hexadecimal:

<p>HTML hex: &#xBAC8;</p>  <!-- Display: 뫈 -->

URL Encoding:

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

Encodings

MD5:

58205a5a2fdeb9c4cbe415d4791f5f07

SHA1:

75134ef85b090d48299e9078728ecf077c660a84

Base64:

66uI