Unicode Finder

"채" U+CC44(HANGUL SYLLABLE CAE)

U+CC44
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE CAE

Programming

C
\uCC44
JavaScript
\uCC44
Java
\uCC44
Json
\uCC44
Python
\uCC44
Perl
\x{CC44}
PHP
\x{CC44}
Ruby
\u{CC44}
Rust
\u{CC44}
Go
\uCC44

Web

CSS
\00CC44
HtmlDecimal
채
HtmlHexadecimal
채
Url
%EC%B1%84

Code

MD5
f2110525c80d9e1bed829b1df19684c0
Sha1
8d2904814555c7753c0de049decf3f2f492e8034
Base64
7LGE

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCC44';
console.log(char);  // Output: 채

Java:

char c = '\uCC44';
System.out.println(c);  // Output: 채

JSON:

{"text": "\uCC44"}  // Value: 채

Python:

char = '\uCC44'
print(char)  # Output: 채

Perl:

my $char = "\x{CC44}";
print $char;  # Output: 채

PHP:

$char = "\x{CC44}";
echo $char;  // Output: 채

Ruby:

char = "\u{CC44}"
puts char  # Output: 채

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#52292;</p>  <!-- Display: 채 -->

HTML Hexadecimal:

<p>HTML hex: &#xCC44;</p>  <!-- Display: 채 -->

URL Encoding:

// 채 URL encoding
https://unicodefinder.com/search.php?query=%EC%B1%84

Encodings

MD5:

f2110525c80d9e1bed829b1df19684c0

SHA1:

8d2904814555c7753c0de049decf3f2f492e8034

Base64:

7LGE