C:
char c = '\uCA2F';
printf("%c\n", c); // Output: 쨯
JavaScript:
const char = '\uCA2F';
console.log(char); // Output: 쨯
Java:
char c = '\uCA2F';
System.out.println(c); // Output: 쨯
JSON:
{"text": "\uCA2F"} // Value: 쨯
Python:
char = '\uCA2F'
print(char) # Output: 쨯
Perl:
my $char = "\x{CA2F}";
print $char; # Output: 쨯
PHP:
$char = "\x{CA2F}";
echo $char; // Output: 쨯
Ruby:
char = "\u{CA2F}"
puts char # Output: 쨯
Rust:
let c = '\u{CA2F}';
println!("{}", c); // Output: 쨯
Go:
char := '\uCA2F'
fmt.Printf("%c\n", char) // Output: 쨯
CSS:
/* CSS content property */
.element::before {
content: "\00CA2F"; /* 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%A8%AF
MD5:
95ecfc39d2751dd33b025c985b1d7f22
SHA1:
894af42c5f602fa50aac84887a5faa900f06e6a5
Base64:
7Kiv