C:
char c = '\u0694';
printf("%c\n", c); // Output: ڔ
JavaScript:
const char = '\u0694';
console.log(char); // Output: ڔ
Java:
char c = '\u0694';
System.out.println(c); // Output: ڔ
JSON:
{"text": "\u0694"} // Value: ڔ
Python:
char = '\u0694'
print(char) # Output: ڔ
Perl:
my $char = "\x{0694}";
print $char; # Output: ڔ
PHP:
$char = "\x{0694}";
echo $char; // Output: ڔ
Ruby:
char = "\u{0694}"
puts char # Output: ڔ
Rust:
let c = '\u{694}';
println!("{}", c); // Output: ڔ
Go:
char := '\u0694'
fmt.Printf("%c\n", char) // Output: ڔ
CSS:
/* CSS content property */
.element::before {
content: "\000694"; /* 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%94
MD5:
6cb3fbe37edabec47c3b7cd18703f65b
SHA1:
d1fa154aa63782b11f7dcd61c6a86dfeac1852e1
Base64:
2pQ=