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