Unicode Finder

"죀" U+C8C0(HANGUL SYLLABLE JWAEK)

U+C8C0
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JWAEK

Programming

C
\uC8C0
JavaScript
\uC8C0
Java
\uC8C0
Json
\uC8C0
Python
\uC8C0
Perl
\x{C8C0}
PHP
\x{C8C0}
Ruby
\u{C8C0}
Rust
\u{C8C0}
Go
\uC8C0

Web

CSS
\00C8C0
HtmlDecimal
죀
HtmlHexadecimal
죀
Url
%EC%A3%80

Code

MD5
f46109b5e105e1e0e7d9173e9f72b4ed
Sha1
383e0235b3876cb494a09276c10cf7a188441353
Base64
7KOA

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC8C0';
console.log(char);  // Output: 죀

Java:

char c = '\uC8C0';
System.out.println(c);  // Output: 죀

JSON:

{"text": "\uC8C0"}  // Value: 죀

Python:

char = '\uC8C0'
print(char)  # Output: 죀

Perl:

my $char = "\x{C8C0}";
print $char;  # Output: 죀

PHP:

$char = "\x{C8C0}";
echo $char;  // Output: 죀

Ruby:

char = "\u{C8C0}"
puts char  # Output: 죀

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51392;</p>  <!-- Display: 죀 -->

HTML Hexadecimal:

<p>HTML hex: &#xC8C0;</p>  <!-- Display: 죀 -->

URL Encoding:

// 죀 URL encoding
https://unicodefinder.com/search.php?query=%EC%A3%80

Encodings

MD5:

f46109b5e105e1e0e7d9173e9f72b4ed

SHA1:

383e0235b3876cb494a09276c10cf7a188441353

Base64:

7KOA