C:
char c = '\uCA2A';
printf("%c\n", c); // Output: 쨪
JavaScript:
const char = '\uCA2A';
console.log(char); // Output: 쨪
Java:
char c = '\uCA2A';
System.out.println(c); // Output: 쨪
JSON:
{"text": "\uCA2A"} // Value: 쨪
Python:
char = '\uCA2A'
print(char) # Output: 쨪
Perl:
my $char = "\x{CA2A}";
print $char; # Output: 쨪
PHP:
$char = "\x{CA2A}";
echo $char; // Output: 쨪
Ruby:
char = "\u{CA2A}"
puts char # Output: 쨪
Rust:
let c = '\u{CA2A}';
println!("{}", c); // Output: 쨪
Go:
char := '\uCA2A'
fmt.Printf("%c\n", char) // Output: 쨪
CSS:
/* CSS content property */
.element::before {
content: "\00CA2A"; /* 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%AA
MD5:
2410e25f8ffcd06176faf7b2f5b771ac
SHA1:
4c9383e71e7e9a888e6e7768144ea888a23c0489
Base64:
7Kiq