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