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