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