Unicode Finder

"쭀" U+CB40(HANGUL SYLLABLE JJYOSS)

U+CB40
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JJYOSS

Programming

C
\uCB40
JavaScript
\uCB40
Java
\uCB40
Json
\uCB40
Python
\uCB40
Perl
\x{CB40}
PHP
\x{CB40}
Ruby
\u{CB40}
Rust
\u{CB40}
Go
\uCB40

Web

CSS
\00CB40
HtmlDecimal
쭀
HtmlHexadecimal
쭀
Url
%EC%AD%80

Code

MD5
ca8ebdcb2fa29b2f1c055e35aeb9e7d6
Sha1
252456e6d9d231a6066b0c221eb9545d073c71ca
Base64
7K2A

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCB40';
console.log(char);  // Output: 쭀

Java:

char c = '\uCB40';
System.out.println(c);  // Output: 쭀

JSON:

{"text": "\uCB40"}  // Value: 쭀

Python:

char = '\uCB40'
print(char)  # Output: 쭀

Perl:

my $char = "\x{CB40}";
print $char;  # Output: 쭀

PHP:

$char = "\x{CB40}";
echo $char;  // Output: 쭀

Ruby:

char = "\u{CB40}"
puts char  # Output: 쭀

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#52032;</p>  <!-- Display: 쭀 -->

HTML Hexadecimal:

<p>HTML hex: &#xCB40;</p>  <!-- Display: 쭀 -->

URL Encoding:

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

Encodings

MD5:

ca8ebdcb2fa29b2f1c055e35aeb9e7d6

SHA1:

252456e6d9d231a6066b0c221eb9545d073c71ca

Base64:

7K2A