Unicode Finder

"먼" U+BA3C(HANGUL SYLLABLE MEON)

U+BA3C
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MEON

Programming

C
\uBA3C
JavaScript
\uBA3C
Java
\uBA3C
Json
\uBA3C
Python
\uBA3C
Perl
\x{BA3C}
PHP
\x{BA3C}
Ruby
\u{BA3C}
Rust
\u{BA3C}
Go
\uBA3C

Web

CSS
\00BA3C
HtmlDecimal
먼
HtmlHexadecimal
먼
Url
%EB%A8%BC

Code

MD5
35a678f3e6b7477eb13d4090987a00da
Sha1
e517f8f77042e1bbf3757c0d845c89b81346d566
Base64
66i8

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBA3C';
console.log(char);  // Output: 먼

Java:

char c = '\uBA3C';
System.out.println(c);  // Output: 먼

JSON:

{"text": "\uBA3C"}  // Value: 먼

Python:

char = '\uBA3C'
print(char)  # Output: 먼

Perl:

my $char = "\x{BA3C}";
print $char;  # Output: 먼

PHP:

$char = "\x{BA3C}";
echo $char;  // Output: 먼

Ruby:

char = "\u{BA3C}"
puts char  # Output: 먼

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47676;</p>  <!-- Display: 먼 -->

HTML Hexadecimal:

<p>HTML hex: &#xBA3C;</p>  <!-- Display: 먼 -->

URL Encoding:

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

Encodings

MD5:

35a678f3e6b7477eb13d4090987a00da

SHA1:

e517f8f77042e1bbf3757c0d845c89b81346d566

Base64:

66i8