C:
char c = '\u0776';
printf("%c\n", c); // Output: ݶ
JavaScript:
const char = '\u0776';
console.log(char); // Output: ݶ
Java:
char c = '\u0776';
System.out.println(c); // Output: ݶ
JSON:
{"text": "\u0776"} // Value: ݶ
Python:
char = '\u0776'
print(char) # Output: ݶ
Perl:
my $char = "\x{0776}";
print $char; # Output: ݶ
PHP:
$char = "\x{0776}";
echo $char; // Output: ݶ
Ruby:
char = "\u{0776}"
puts char # Output: ݶ
Rust:
let c = '\u{776}';
println!("{}", c); // Output: ݶ
Go:
char := '\u0776'
fmt.Printf("%c\n", char) // Output: ݶ
CSS:
/* CSS content property */
.element::before {
content: "\000776"; /* 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=%DD%B6
MD5:
17538be6291ccf6622ef58a30d86cef4
SHA1:
ca79485bc0e25798697c7dde6fe0b79d8e6d9eca
Base64:
3bY=