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