Unicode Finder

"잉" U+C789(HANGUL SYLLABLE ING)

U+C789
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE ING

Programming

C
\uC789
JavaScript
\uC789
Java
\uC789
Json
\uC789
Python
\uC789
Perl
\x{C789}
PHP
\x{C789}
Ruby
\u{C789}
Rust
\u{C789}
Go
\uC789

Web

CSS
\00C789
HtmlDecimal
잉
HtmlHexadecimal
잉
Url
%EC%9E%89

Code

MD5
088dc6ad63c4b58a263dc345b129481c
Sha1
36100e3deaee59907a9ccd342ab0e5520a38e28c
Base64
7J6J

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC789';
console.log(char);  // Output: 잉

Java:

char c = '\uC789';
System.out.println(c);  // Output: 잉

JSON:

{"text": "\uC789"}  // Value: 잉

Python:

char = '\uC789'
print(char)  # Output: 잉

Perl:

my $char = "\x{C789}";
print $char;  # Output: 잉

PHP:

$char = "\x{C789}";
echo $char;  // Output: 잉

Ruby:

char = "\u{C789}"
puts char  # Output: 잉

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51081;</p>  <!-- Display: 잉 -->

HTML Hexadecimal:

<p>HTML hex: &#xC789;</p>  <!-- Display: 잉 -->

URL Encoding:

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

Encodings

MD5:

088dc6ad63c4b58a263dc345b129481c

SHA1:

36100e3deaee59907a9ccd342ab0e5520a38e28c

Base64:

7J6J