C:
char c = '\uC896';
printf("%c\n", c); // Output: 좖
JavaScript:
const char = '\uC896';
console.log(char); // Output: 좖
Java:
char c = '\uC896';
System.out.println(c); // Output: 좖
JSON:
{"text": "\uC896"} // Value: 좖
Python:
char = '\uC896'
print(char) # Output: 좖
Perl:
my $char = "\x{C896}";
print $char; # Output: 좖
PHP:
$char = "\x{C896}";
echo $char; // Output: 좖
Ruby:
char = "\u{C896}"
puts char # Output: 좖
Rust:
let c = '\u{C896}';
println!("{}", c); // Output: 좖
Go:
char := '\uC896'
fmt.Printf("%c\n", char) // Output: 좖
CSS:
/* CSS content property */
.element::before {
content: "\00C896"; /* 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%A2%96
MD5:
eec988927dcc97b4cd145bf623c2d5af
SHA1:
039556f02f1f719e51ce9f2f5398237872a92fc2
Base64:
7KKW