Unicode Finder

"쳊" U+CCCA(HANGUL SYLLABLE CEJ)

U+CCCA
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE CEJ

Programming

C
\uCCCA
JavaScript
\uCCCA
Java
\uCCCA
Json
\uCCCA
Python
\uCCCA
Perl
\x{CCCA}
PHP
\x{CCCA}
Ruby
\u{CCCA}
Rust
\u{CCCA}
Go
\uCCCA

Web

CSS
\00CCCA
HtmlDecimal
쳊
HtmlHexadecimal
쳊
Url
%EC%B3%8A

Code

MD5
2e432cfa50971c5fb08a85a983035d57
Sha1
0022f42f91c7731dfd1cfea113b3d6fd438ce633
Base64
7LOK

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCCCA';
console.log(char);  // Output: 쳊

Java:

char c = '\uCCCA';
System.out.println(c);  // Output: 쳊

JSON:

{"text": "\uCCCA"}  // Value: 쳊

Python:

char = '\uCCCA'
print(char)  # Output: 쳊

Perl:

my $char = "\x{CCCA}";
print $char;  # Output: 쳊

PHP:

$char = "\x{CCCA}";
echo $char;  // Output: 쳊

Ruby:

char = "\u{CCCA}"
puts char  # Output: 쳊

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#52426;</p>  <!-- Display: 쳊 -->

HTML Hexadecimal:

<p>HTML hex: &#xCCCA;</p>  <!-- Display: 쳊 -->

URL Encoding:

// 쳊 URL encoding
https://unicodefinder.com/search.php?query=%EC%B3%8A

Encodings

MD5:

2e432cfa50971c5fb08a85a983035d57

SHA1:

0022f42f91c7731dfd1cfea113b3d6fd438ce633

Base64:

7LOK