C:
char c = '\uCA96';
printf("%c\n", c); // Output: 쪖
JavaScript:
const char = '\uCA96';
console.log(char); // Output: 쪖
Java:
char c = '\uCA96';
System.out.println(c); // Output: 쪖
JSON:
{"text": "\uCA96"} // Value: 쪖
Python:
char = '\uCA96'
print(char) # Output: 쪖
Perl:
my $char = "\x{CA96}";
print $char; # Output: 쪖
PHP:
$char = "\x{CA96}";
echo $char; // Output: 쪖
Ruby:
char = "\u{CA96}"
puts char # Output: 쪖
Rust:
let c = '\u{CA96}';
println!("{}", c); // Output: 쪖
Go:
char := '\uCA96'
fmt.Printf("%c\n", char) // Output: 쪖
CSS:
/* CSS content property */
.element::before {
content: "\00CA96"; /* 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%AA%96
MD5:
cc410a9a8fcc73feeee6356ade6ae95e
SHA1:
ca0f7a3df1de91f6e44390ab3ae551e88b32afc2
Base64:
7KqW