C:
char c = '\uC45C';
printf("%c\n", c); // Output: 쑜
JavaScript:
const char = '\uC45C';
console.log(char); // Output: 쑜
Java:
char c = '\uC45C';
System.out.println(c); // Output: 쑜
JSON:
{"text": "\uC45C"} // Value: 쑜
Python:
char = '\uC45C'
print(char) # Output: 쑜
Perl:
my $char = "\x{C45C}";
print $char; # Output: 쑜
PHP:
$char = "\x{C45C}";
echo $char; // Output: 쑜
Ruby:
char = "\u{C45C}"
puts char # Output: 쑜
Rust:
let c = '\u{C45C}';
println!("{}", c); // Output: 쑜
Go:
char := '\uC45C'
fmt.Printf("%c\n", char) // Output: 쑜
CSS:
/* CSS content property */
.element::before {
content: "\00C45C"; /* 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%91%9C
MD5:
7eea9bcd733320a8db29319bb5587384
SHA1:
6f1d74fe6fd951eb161cceb336786b68337e3c1d
Base64:
7JGc