C:
char c = '\uD4CE';
printf("%c\n", c); // Output: 퓎
JavaScript:
const char = '\uD4CE';
console.log(char); // Output: 퓎
Java:
char c = '\uD4CE';
System.out.println(c); // Output: 퓎
JSON:
{"text": "\uD4CE"} // Value: 퓎
Python:
char = '\uD4CE'
print(char) # Output: 퓎
Perl:
my $char = "\x{D4CE}";
print $char; # Output: 퓎
PHP:
$char = "\x{D4CE}";
echo $char; // Output: 퓎
Ruby:
char = "\u{D4CE}"
puts char # Output: 퓎
Rust:
let c = '\u{D4CE}';
println!("{}", c); // Output: 퓎
Go:
char := '\uD4CE'
fmt.Printf("%c\n", char) // Output: 퓎
CSS:
/* CSS content property */
.element::before {
content: "\00D4CE"; /* 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%8E
MD5:
6a934be1e43f6cc81091b6c9e0ab0393
SHA1:
2635d3dcd931fc29ec0adaf2d6ca4bf34d54dc2b
Base64:
7ZOO