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