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