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