C:
char c = '\uC894';
printf("%c\n", c); // Output: 좔
JavaScript:
const char = '\uC894';
console.log(char); // Output: 좔
Java:
char c = '\uC894';
System.out.println(c); // Output: 좔
JSON:
{"text": "\uC894"} // Value: 좔
Python:
char = '\uC894'
print(char) # Output: 좔
Perl:
my $char = "\x{C894}";
print $char; # Output: 좔
PHP:
$char = "\x{C894}";
echo $char; // Output: 좔
Ruby:
char = "\u{C894}"
puts char # Output: 좔
Rust:
let c = '\u{C894}';
println!("{}", c); // Output: 좔
Go:
char := '\uC894'
fmt.Printf("%c\n", char) // Output: 좔
CSS:
/* CSS content property */
.element::before {
content: "\00C894"; /* 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%94
MD5:
388614da067bfcf3d259d4802ccb3acd
SHA1:
9d3f9503fe75c3ef4a4f5ba86fd133e62a40ce18
Base64:
7KKU