C:
char c = '\uCA81';
printf("%c\n", c); // Output: 쪁
JavaScript:
const char = '\uCA81';
console.log(char); // Output: 쪁
Java:
char c = '\uCA81';
System.out.println(c); // Output: 쪁
JSON:
{"text": "\uCA81"} // Value: 쪁
Python:
char = '\uCA81'
print(char) # Output: 쪁
Perl:
my $char = "\x{CA81}";
print $char; # Output: 쪁
PHP:
$char = "\x{CA81}";
echo $char; // Output: 쪁
Ruby:
char = "\u{CA81}"
puts char # Output: 쪁
Rust:
let c = '\u{CA81}';
println!("{}", c); // Output: 쪁
Go:
char := '\uCA81'
fmt.Printf("%c\n", char) // Output: 쪁
CSS:
/* CSS content property */
.element::before {
content: "\00CA81"; /* 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%81
MD5:
83b66d182e827cc39ceb94c05209e197
SHA1:
5d48ad4e6bee58d3529675ab30701e42feb971b1
Base64:
7KqB