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