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