Unicode Finder

"뫀" U+BAC0(HANGUL SYLLABLE MOK)

U+BAC0
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MOK

Programming

C
\uBAC0
JavaScript
\uBAC0
Java
\uBAC0
Json
\uBAC0
Python
\uBAC0
Perl
\x{BAC0}
PHP
\x{BAC0}
Ruby
\u{BAC0}
Rust
\u{BAC0}
Go
\uBAC0

Web

CSS
\00BAC0
HtmlDecimal
뫀
HtmlHexadecimal
뫀
Url
%EB%AB%80

Code

MD5
b4ad1464613e698e70225be95c1d9af1
Sha1
c6819554d2b9d772989e8b1a2b5a34a021788314
Base64
66uA

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBAC0';
console.log(char);  // Output: 뫀

Java:

char c = '\uBAC0';
System.out.println(c);  // Output: 뫀

JSON:

{"text": "\uBAC0"}  // Value: 뫀

Python:

char = '\uBAC0'
print(char)  # Output: 뫀

Perl:

my $char = "\x{BAC0}";
print $char;  # Output: 뫀

PHP:

$char = "\x{BAC0}";
echo $char;  // Output: 뫀

Ruby:

char = "\u{BAC0}"
puts char  # Output: 뫀

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47808;</p>  <!-- Display: 뫀 -->

HTML Hexadecimal:

<p>HTML hex: &#xBAC0;</p>  <!-- Display: 뫀 -->

URL Encoding:

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

Encodings

MD5:

b4ad1464613e698e70225be95c1d9af1

SHA1:

c6819554d2b9d772989e8b1a2b5a34a021788314

Base64:

66uA