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