C:
char c = '\u0764';
printf("%c\n", c); // Output: ݤ
JavaScript:
const char = '\u0764';
console.log(char); // Output: ݤ
Java:
char c = '\u0764';
System.out.println(c); // Output: ݤ
JSON:
{"text": "\u0764"} // Value: ݤ
Python:
char = '\u0764'
print(char) # Output: ݤ
Perl:
my $char = "\x{0764}";
print $char; # Output: ݤ
PHP:
$char = "\x{0764}";
echo $char; // Output: ݤ
Ruby:
char = "\u{0764}"
puts char # Output: ݤ
Rust:
let c = '\u{764}';
println!("{}", c); // Output: ݤ
Go:
char := '\u0764'
fmt.Printf("%c\n", char) // Output: ݤ
CSS:
/* CSS content property */
.element::before {
content: "\000764"; /* 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%A4
MD5:
c7e8ae014ba07a9f133020ef1f6e9e59
SHA1:
ea4f2af9ae2212b4c012d1422bea2d160a8ee747
Base64:
3aQ=