C:
char c = '\uC302';
printf("%c\n", c); // Output: 쌂
JavaScript:
const char = '\uC302';
console.log(char); // Output: 쌂
Java:
char c = '\uC302';
System.out.println(c); // Output: 쌂
JSON:
{"text": "\uC302"} // Value: 쌂
Python:
char = '\uC302'
print(char) # Output: 쌂
Perl:
my $char = "\x{C302}";
print $char; # Output: 쌂
PHP:
$char = "\x{C302}";
echo $char; // Output: 쌂
Ruby:
char = "\u{C302}"
puts char # Output: 쌂
Rust:
let c = '\u{C302}';
println!("{}", c); // Output: 쌂
Go:
char := '\uC302'
fmt.Printf("%c\n", char) // Output: 쌂
CSS:
/* CSS content property */
.element::before {
content: "\00C302"; /* 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%82
MD5:
407dfdab3f9a446eea2b005b4bbb3b1e
SHA1:
5e70e0df1cf4d99b61f528e7956e339aa3f45de7
Base64:
7IyC