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