C:
char c = '\uC9AE';
printf("%c\n", c); // Output: 즮
JavaScript:
const char = '\uC9AE';
console.log(char); // Output: 즮
Java:
char c = '\uC9AE';
System.out.println(c); // Output: 즮
JSON:
{"text": "\uC9AE"} // Value: 즮
Python:
char = '\uC9AE'
print(char) # Output: 즮
Perl:
my $char = "\x{C9AE}";
print $char; # Output: 즮
PHP:
$char = "\x{C9AE}";
echo $char; // Output: 즮
Ruby:
char = "\u{C9AE}"
puts char # Output: 즮
Rust:
let c = '\u{C9AE}';
println!("{}", c); // Output: 즮
Go:
char := '\uC9AE'
fmt.Printf("%c\n", char) // Output: 즮
CSS:
/* CSS content property */
.element::before {
content: "\00C9AE"; /* 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%A6%AE
MD5:
719218eca97078dc79ef4f6180e0b022
SHA1:
4e7287d484c8bdb6d3d03ff8306e89a49ac9f7e6
Base64:
7Kau