Unicode Finder

"잎" U+C78E(HANGUL SYLLABLE IP)

U+C78E
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE IP

Programming

C
\uC78E
JavaScript
\uC78E
Java
\uC78E
Json
\uC78E
Python
\uC78E
Perl
\x{C78E}
PHP
\x{C78E}
Ruby
\u{C78E}
Rust
\u{C78E}
Go
\uC78E

Web

CSS
\00C78E
HtmlDecimal
잎
HtmlHexadecimal
잎
Url
%EC%9E%8E

Code

MD5
a3e1bce1c7e10e33fd8f269a3379a28e
Sha1
de8e9b503f6a8fc2ed85f1a38dc40906cf12ad36
Base64
7J6O

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC78E';
console.log(char);  // Output: 잎

Java:

char c = '\uC78E';
System.out.println(c);  // Output: 잎

JSON:

{"text": "\uC78E"}  // Value: 잎

Python:

char = '\uC78E'
print(char)  # Output: 잎

Perl:

my $char = "\x{C78E}";
print $char;  # Output: 잎

PHP:

$char = "\x{C78E}";
echo $char;  // Output: 잎

Ruby:

char = "\u{C78E}"
puts char  # Output: 잎

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51086;</p>  <!-- Display: 잎 -->

HTML Hexadecimal:

<p>HTML hex: &#xC78E;</p>  <!-- Display: 잎 -->

URL Encoding:

// 잎 URL encoding
https://unicodefinder.com/search.php?query=%EC%9E%8E

Encodings

MD5:

a3e1bce1c7e10e33fd8f269a3379a28e

SHA1:

de8e9b503f6a8fc2ed85f1a38dc40906cf12ad36

Base64:

7J6O