C:
char c = '\u0690';
printf("%c\n", c); // Output: ڐ
JavaScript:
const char = '\u0690';
console.log(char); // Output: ڐ
Java:
char c = '\u0690';
System.out.println(c); // Output: ڐ
JSON:
{"text": "\u0690"} // Value: ڐ
Python:
char = '\u0690'
print(char) # Output: ڐ
Perl:
my $char = "\x{0690}";
print $char; # Output: ڐ
PHP:
$char = "\x{0690}";
echo $char; // Output: ڐ
Ruby:
char = "\u{0690}"
puts char # Output: ڐ
Rust:
let c = '\u{690}';
println!("{}", c); // Output: ڐ
Go:
char := '\u0690'
fmt.Printf("%c\n", char) // Output: ڐ
CSS:
/* CSS content property */
.element::before {
content: "\000690"; /* 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%90
MD5:
822b3f95a20e3f319143b377c625f1a1
SHA1:
6029bfdbedca1c5f899cc7c3f1d442b3f92e9722
Base64:
2pA=