C:
char c = '\uCCA3';
printf("%c\n", c); // Output: 첣
JavaScript:
const char = '\uCCA3';
console.log(char); // Output: 첣
Java:
char c = '\uCCA3';
System.out.println(c); // Output: 첣
JSON:
{"text": "\uCCA3"} // Value: 첣
Python:
char = '\uCCA3'
print(char) # Output: 첣
Perl:
my $char = "\x{CCA3}";
print $char; # Output: 첣
PHP:
$char = "\x{CCA3}";
echo $char; // Output: 첣
Ruby:
char = "\u{CCA3}"
puts char # Output: 첣
Rust:
let c = '\u{CCA3}';
println!("{}", c); // Output: 첣
Go:
char := '\uCCA3'
fmt.Printf("%c\n", char) // Output: 첣
CSS:
/* CSS content property */
.element::before {
content: "\00CCA3"; /* 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%B2%A3
MD5:
1cc323c7ed6371b0fc676583386b4d3e
SHA1:
53596aa6860c2dcb1110c895955b30fb2709ec5e
Base64:
7LKj