Unicode Finder

"먕" U+BA15(HANGUL SYLLABLE MYANG)

U+BA15
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MYANG

Programming

C
\uBA15
JavaScript
\uBA15
Java
\uBA15
Json
\uBA15
Python
\uBA15
Perl
\x{BA15}
PHP
\x{BA15}
Ruby
\u{BA15}
Rust
\u{BA15}
Go
\uBA15

Web

CSS
\00BA15
HtmlDecimal
먕
HtmlHexadecimal
먕
Url
%EB%A8%95

Code

MD5
9abfe3804d914a6e0147faba8c9075aa
Sha1
533b0534c449933e9ae5fdd4bd43737ee50aef0c
Base64
66iV

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBA15';
console.log(char);  // Output: 먕

Java:

char c = '\uBA15';
System.out.println(c);  // Output: 먕

JSON:

{"text": "\uBA15"}  // Value: 먕

Python:

char = '\uBA15'
print(char)  # Output: 먕

Perl:

my $char = "\x{BA15}";
print $char;  # Output: 먕

PHP:

$char = "\x{BA15}";
echo $char;  // Output: 먕

Ruby:

char = "\u{BA15}"
puts char  # Output: 먕

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47637;</p>  <!-- Display: 먕 -->

HTML Hexadecimal:

<p>HTML hex: &#xBA15;</p>  <!-- Display: 먕 -->

URL Encoding:

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

Encodings

MD5:

9abfe3804d914a6e0147faba8c9075aa

SHA1:

533b0534c449933e9ae5fdd4bd43737ee50aef0c

Base64:

66iV