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