C:
char c = '\u0689';
printf("%c\n", c); // Output: ډ
JavaScript:
const char = '\u0689';
console.log(char); // Output: ډ
Java:
char c = '\u0689';
System.out.println(c); // Output: ډ
JSON:
{"text": "\u0689"} // Value: ډ
Python:
char = '\u0689'
print(char) # Output: ډ
Perl:
my $char = "\x{0689}";
print $char; # Output: ډ
PHP:
$char = "\x{0689}";
echo $char; // Output: ډ
Ruby:
char = "\u{0689}"
puts char # Output: ډ
Rust:
let c = '\u{689}';
println!("{}", c); // Output: ډ
Go:
char := '\u0689'
fmt.Printf("%c\n", char) // Output: ډ
CSS:
/* CSS content property */
.element::before {
content: "\000689"; /* 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%89
MD5:
9eb6f4fa85daac7e506f39b4f66f2983
SHA1:
cf356d257e06aedf5c417ebface2f1714a49b211
Base64:
2ok=