C:
char c = '\uCACD';
printf("%c\n", c); // Output: 쫍
JavaScript:
const char = '\uCACD';
console.log(char); // Output: 쫍
Java:
char c = '\uCACD';
System.out.println(c); // Output: 쫍
JSON:
{"text": "\uCACD"} // Value: 쫍
Python:
char = '\uCACD'
print(char) # Output: 쫍
Perl:
my $char = "\x{CACD}";
print $char; # Output: 쫍
PHP:
$char = "\x{CACD}";
echo $char; // Output: 쫍
Ruby:
char = "\u{CACD}"
puts char # Output: 쫍
Rust:
let c = '\u{CACD}';
println!("{}", c); // Output: 쫍
Go:
char := '\uCACD'
fmt.Printf("%c\n", char) // Output: 쫍
CSS:
/* CSS content property */
.element::before {
content: "\00CACD"; /* 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%AB%8D
MD5:
6e152c36bea81b680840915eceb029a4
SHA1:
646884a1b88f62b85bf6d1cd46e456288932db0b
Base64:
7KuN