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