Unicode Finder

"먒" U+BA12(HANGUL SYLLABLE MYABS)

U+BA12
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MYABS

Programming

C
\uBA12
JavaScript
\uBA12
Java
\uBA12
Json
\uBA12
Python
\uBA12
Perl
\x{BA12}
PHP
\x{BA12}
Ruby
\u{BA12}
Rust
\u{BA12}
Go
\uBA12

Web

CSS
\00BA12
HtmlDecimal
먒
HtmlHexadecimal
먒
Url
%EB%A8%92

Code

MD5
7fbe19c88cf2069b54b62a4639e42f45
Sha1
e6c6a32b58efbdb96c28dca28746a591239eebb9
Base64
66iS

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBA12';
console.log(char);  // Output: 먒

Java:

char c = '\uBA12';
System.out.println(c);  // Output: 먒

JSON:

{"text": "\uBA12"}  // Value: 먒

Python:

char = '\uBA12'
print(char)  # Output: 먒

Perl:

my $char = "\x{BA12}";
print $char;  # Output: 먒

PHP:

$char = "\x{BA12}";
echo $char;  // Output: 먒

Ruby:

char = "\u{BA12}"
puts char  # Output: 먒

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47634;</p>  <!-- Display: 먒 -->

HTML Hexadecimal:

<p>HTML hex: &#xBA12;</p>  <!-- Display: 먒 -->

URL Encoding:

// 먒 URL encoding
https://unicodefinder.com/search.php?query=%EB%A8%92

Encodings

MD5:

7fbe19c88cf2069b54b62a4639e42f45

SHA1:

e6c6a32b58efbdb96c28dca28746a591239eebb9

Base64:

66iS