C:
char c = '\uD4C6';
printf("%c\n", c); // Output: 퓆
JavaScript:
const char = '\uD4C6';
console.log(char); // Output: 퓆
Java:
char c = '\uD4C6';
System.out.println(c); // Output: 퓆
JSON:
{"text": "\uD4C6"} // Value: 퓆
Python:
char = '\uD4C6'
print(char) # Output: 퓆
Perl:
my $char = "\x{D4C6}";
print $char; # Output: 퓆
PHP:
$char = "\x{D4C6}";
echo $char; // Output: 퓆
Ruby:
char = "\u{D4C6}"
puts char # Output: 퓆
Rust:
let c = '\u{D4C6}';
println!("{}", c); // Output: 퓆
Go:
char := '\uD4C6'
fmt.Printf("%c\n", char) // Output: 퓆
CSS:
/* CSS content property */
.element::before {
content: "\00D4C6"; /* 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%86
MD5:
2a173bc6fea2365685c68657dd6db379
SHA1:
63d64789e6c973c2167c02485287ddc278a98bf9
Base64:
7ZOG