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