C:
char c = '\u0775';
printf("%c\n", c); // Output: ݵ
JavaScript:
const char = '\u0775';
console.log(char); // Output: ݵ
Java:
char c = '\u0775';
System.out.println(c); // Output: ݵ
JSON:
{"text": "\u0775"} // Value: ݵ
Python:
char = '\u0775'
print(char) # Output: ݵ
Perl:
my $char = "\x{0775}";
print $char; # Output: ݵ
PHP:
$char = "\x{0775}";
echo $char; // Output: ݵ
Ruby:
char = "\u{0775}"
puts char # Output: ݵ
Rust:
let c = '\u{775}';
println!("{}", c); // Output: ݵ
Go:
char := '\u0775'
fmt.Printf("%c\n", char) // Output: ݵ
CSS:
/* CSS content property */
.element::before {
content: "\000775"; /* 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%B5
MD5:
7268daaeba71efb25d6fe18f234e3c48
SHA1:
316c2c20bacc01a02c53aaf3a4513c75ef29f1db
Base64:
3bU=