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