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