Unicode Finder

"좈" U+C888(HANGUL SYLLABLE JOK)

U+C888
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JOK

Programming

C
\uC888
JavaScript
\uC888
Java
\uC888
Json
\uC888
Python
\uC888
Perl
\x{C888}
PHP
\x{C888}
Ruby
\u{C888}
Rust
\u{C888}
Go
\uC888

Web

CSS
\00C888
HtmlDecimal
좈
HtmlHexadecimal
좈
Url
%EC%A2%88

Code

MD5
ed4b818a1b2e528d5f5facb59682b422
Sha1
b3b868fe3eefbe78a4d54480646db26305a1eb22
Base64
7KKI

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC888';
console.log(char);  // Output: 좈

Java:

char c = '\uC888';
System.out.println(c);  // Output: 좈

JSON:

{"text": "\uC888"}  // Value: 좈

Python:

char = '\uC888'
print(char)  # Output: 좈

Perl:

my $char = "\x{C888}";
print $char;  # Output: 좈

PHP:

$char = "\x{C888}";
echo $char;  // Output: 좈

Ruby:

char = "\u{C888}"
puts char  # Output: 좈

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51336;</p>  <!-- Display: 좈 -->

HTML Hexadecimal:

<p>HTML hex: &#xC888;</p>  <!-- Display: 좈 -->

URL Encoding:

// 좈 URL encoding
https://unicodefinder.com/search.php?query=%EC%A2%88

Encodings

MD5:

ed4b818a1b2e528d5f5facb59682b422

SHA1:

b3b868fe3eefbe78a4d54480646db26305a1eb22

Base64:

7KKI