C:
char c = '\u0766';
printf("%c\n", c); // Output: ݦ
JavaScript:
const char = '\u0766';
console.log(char); // Output: ݦ
Java:
char c = '\u0766';
System.out.println(c); // Output: ݦ
JSON:
{"text": "\u0766"} // Value: ݦ
Python:
char = '\u0766'
print(char) # Output: ݦ
Perl:
my $char = "\x{0766}";
print $char; # Output: ݦ
PHP:
$char = "\x{0766}";
echo $char; // Output: ݦ
Ruby:
char = "\u{0766}"
puts char # Output: ݦ
Rust:
let c = '\u{766}';
println!("{}", c); // Output: ݦ
Go:
char := '\u0766'
fmt.Printf("%c\n", char) // Output: ݦ
CSS:
/* CSS content property */
.element::before {
content: "\000766"; /* 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%A6
MD5:
065d016f56bb1a661bab31612c7d707e
SHA1:
99f31e32ae74b07f90dd11ce65f3613476d7050b
Base64:
3aY=