C:
char c = '\u0691';
printf("%c\n", c); // Output: ڑ
JavaScript:
const char = '\u0691';
console.log(char); // Output: ڑ
Java:
char c = '\u0691';
System.out.println(c); // Output: ڑ
JSON:
{"text": "\u0691"} // Value: ڑ
Python:
char = '\u0691'
print(char) # Output: ڑ
Perl:
my $char = "\x{0691}";
print $char; # Output: ڑ
PHP:
$char = "\x{0691}";
echo $char; // Output: ڑ
Ruby:
char = "\u{0691}"
puts char # Output: ڑ
Rust:
let c = '\u{691}';
println!("{}", c); // Output: ڑ
Go:
char := '\u0691'
fmt.Printf("%c\n", char) // Output: ڑ
CSS:
/* CSS content property */
.element::before {
content: "\000691"; /* 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=%DA%91
MD5:
5146754fc568b65d69275a8e1e9c5555
SHA1:
827548f357a55623486a8ee45ecd87561bb2e4ea
Base64:
2pE=