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