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