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