C:
char c = '\uCA4C';
printf("%c\n", c); // Output: 쩌
JavaScript:
const char = '\uCA4C';
console.log(char); // Output: 쩌
Java:
char c = '\uCA4C';
System.out.println(c); // Output: 쩌
JSON:
{"text": "\uCA4C"} // Value: 쩌
Python:
char = '\uCA4C'
print(char) # Output: 쩌
Perl:
my $char = "\x{CA4C}";
print $char; # Output: 쩌
PHP:
$char = "\x{CA4C}";
echo $char; // Output: 쩌
Ruby:
char = "\u{CA4C}"
puts char # Output: 쩌
Rust:
let c = '\u{CA4C}';
println!("{}", c); // Output: 쩌
Go:
char := '\uCA4C'
fmt.Printf("%c\n", char) // Output: 쩌
CSS:
/* CSS content property */
.element::before {
content: "\00CA4C"; /* 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%A9%8C
MD5:
ec5cd0acd03bdc775457c15e0f7ce8b0
SHA1:
38fee2a571e8e2b8e6d77d3e6202d88926d8b73b
Base64:
7KmM