C:
char c = '\uC9A2';
printf("%c\n", c); // Output: 즢
JavaScript:
const char = '\uC9A2';
console.log(char); // Output: 즢
Java:
char c = '\uC9A2';
System.out.println(c); // Output: 즢
JSON:
{"text": "\uC9A2"} // Value: 즢
Python:
char = '\uC9A2'
print(char) # Output: 즢
Perl:
my $char = "\x{C9A2}";
print $char; # Output: 즢
PHP:
$char = "\x{C9A2}";
echo $char; // Output: 즢
Ruby:
char = "\u{C9A2}"
puts char # Output: 즢
Rust:
let c = '\u{C9A2}';
println!("{}", c); // Output: 즢
Go:
char := '\uC9A2'
fmt.Printf("%c\n", char) // Output: 즢
CSS:
/* CSS content property */
.element::before {
content: "\00C9A2"; /* 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%A2
MD5:
01094a0f848ef35234dd96e90421a817
SHA1:
625ff4329dfa50df2eae64759f2bda031aeedb04
Base64:
7Kai