C:
char c = '\uD4C0';
printf("%c\n", c); // Output: 퓀
JavaScript:
const char = '\uD4C0';
console.log(char); // Output: 퓀
Java:
char c = '\uD4C0';
System.out.println(c); // Output: 퓀
JSON:
{"text": "\uD4C0"} // Value: 퓀
Python:
char = '\uD4C0'
print(char) # Output: 퓀
Perl:
my $char = "\x{D4C0}";
print $char; # Output: 퓀
PHP:
$char = "\x{D4C0}";
echo $char; // Output: 퓀
Ruby:
char = "\u{D4C0}"
puts char # Output: 퓀
Rust:
let c = '\u{D4C0}';
println!("{}", c); // Output: 퓀
Go:
char := '\uD4C0'
fmt.Printf("%c\n", char) // Output: 퓀
CSS:
/* CSS content property */
.element::before {
content: "\00D4C0"; /* 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=%ED%93%80
MD5:
ac725da5dc0a85e268998e2bf2266c49
SHA1:
0502adea9bb78eb22758d2811b04e6bd5e09dff1
Base64:
7ZOA