C:
char c = '\u0688';
printf("%c\n", c); // Output: ڈ
JavaScript:
const char = '\u0688';
console.log(char); // Output: ڈ
Java:
char c = '\u0688';
System.out.println(c); // Output: ڈ
JSON:
{"text": "\u0688"} // Value: ڈ
Python:
char = '\u0688'
print(char) # Output: ڈ
Perl:
my $char = "\x{0688}";
print $char; # Output: ڈ
PHP:
$char = "\x{0688}";
echo $char; // Output: ڈ
Ruby:
char = "\u{0688}"
puts char # Output: ڈ
Rust:
let c = '\u{688}';
println!("{}", c); // Output: ڈ
Go:
char := '\u0688'
fmt.Printf("%c\n", char) // Output: ڈ
CSS:
/* CSS content property */
.element::before {
content: "\000688"; /* 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%88
MD5:
f373e6ecf1a095df50e15d16d64477af
SHA1:
93e7ca3035a7ea622b01c70fc4a2ed0ad588994b
Base64:
2og=