C:
char c = '\uD4C4';
printf("%c\n", c); // Output: 퓄
JavaScript:
const char = '\uD4C4';
console.log(char); // Output: 퓄
Java:
char c = '\uD4C4';
System.out.println(c); // Output: 퓄
JSON:
{"text": "\uD4C4"} // Value: 퓄
Python:
char = '\uD4C4'
print(char) # Output: 퓄
Perl:
my $char = "\x{D4C4}";
print $char; # Output: 퓄
PHP:
$char = "\x{D4C4}";
echo $char; // Output: 퓄
Ruby:
char = "\u{D4C4}"
puts char # Output: 퓄
Rust:
let c = '\u{D4C4}';
println!("{}", c); // Output: 퓄
Go:
char := '\uD4C4'
fmt.Printf("%c\n", char) // Output: 퓄
CSS:
/* CSS content property */
.element::before {
content: "\00D4C4"; /* 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%84
MD5:
4fe1620928156d4395008f92f7805f54
SHA1:
f1951c70e8362d8d484d7c1f7b0fd831e4b1d264
Base64:
7ZOE