Unicode Finder

"먜" U+BA1C(HANGUL SYLLABLE MYAE)

U+BA1C
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MYAE

Programming

C
\uBA1C
JavaScript
\uBA1C
Java
\uBA1C
Json
\uBA1C
Python
\uBA1C
Perl
\x{BA1C}
PHP
\x{BA1C}
Ruby
\u{BA1C}
Rust
\u{BA1C}
Go
\uBA1C

Web

CSS
\00BA1C
HtmlDecimal
먜
HtmlHexadecimal
먜
Url
%EB%A8%9C

Code

MD5
7e87c8ad913ab2c9f4eb80ca278f9a91
Sha1
5cf33f9dff855a0e46a5a581932929beffa2ba2e
Base64
66ic

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBA1C';
console.log(char);  // Output: 먜

Java:

char c = '\uBA1C';
System.out.println(c);  // Output: 먜

JSON:

{"text": "\uBA1C"}  // Value: 먜

Python:

char = '\uBA1C'
print(char)  # Output: 먜

Perl:

my $char = "\x{BA1C}";
print $char;  # Output: 먜

PHP:

$char = "\x{BA1C}";
echo $char;  // Output: 먜

Ruby:

char = "\u{BA1C}"
puts char  # Output: 먜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47644;</p>  <!-- Display: 먜 -->

HTML Hexadecimal:

<p>HTML hex: &#xBA1C;</p>  <!-- Display: 먜 -->

URL Encoding:

// 먜 URL encoding
https://unicodefinder.com/search.php?query=%EB%A8%9C

Encodings

MD5:

7e87c8ad913ab2c9f4eb80ca278f9a91

SHA1:

5cf33f9dff855a0e46a5a581932929beffa2ba2e

Base64:

66ic