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