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