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