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: 쳊
CSS:
/* CSS content property */
.element::before {
content: "\00CCCA"; /* Display: 쳊 */
}
HTML Decimal:
<p>HTML decimal: 쳊</p> <!-- Display: 쳊 -->
HTML Hexadecimal:
<p>HTML hex: 쳊</p> <!-- Display: 쳊 -->
URL Encoding:
// 쳊 URL encoding
https://unicodefinder.com/search.php?query=%EC%B3%8A
MD5:
2e432cfa50971c5fb08a85a983035d57
SHA1:
0022f42f91c7731dfd1cfea113b3d6fd438ce633
Base64:
7LOK