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