C:
char c = '\u0765';
printf("%c\n", c); // Output: ݥ
JavaScript:
const char = '\u0765';
console.log(char); // Output: ݥ
Java:
char c = '\u0765';
System.out.println(c); // Output: ݥ
JSON:
{"text": "\u0765"} // Value: ݥ
Python:
char = '\u0765'
print(char) # Output: ݥ
Perl:
my $char = "\x{0765}";
print $char; # Output: ݥ
PHP:
$char = "\x{0765}";
echo $char; // Output: ݥ
Ruby:
char = "\u{0765}"
puts char # Output: ݥ
Rust:
let c = '\u{765}';
println!("{}", c); // Output: ݥ
Go:
char := '\u0765'
fmt.Printf("%c\n", char) // Output: ݥ
CSS:
/* CSS content property */
.element::before {
content: "\000765"; /* 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%A5
MD5:
817b97deafd5d0b7a4dce81b0a6e0c71
SHA1:
a7bf6b1f6d525ed3380221d77c78303ebb98c844
Base64:
3aU=