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