C:
char c = '\u0697';
printf("%c\n", c); // Output: ڗ
JavaScript:
const char = '\u0697';
console.log(char); // Output: ڗ
Java:
char c = '\u0697';
System.out.println(c); // Output: ڗ
JSON:
{"text": "\u0697"} // Value: ڗ
Python:
char = '\u0697'
print(char) # Output: ڗ
Perl:
my $char = "\x{0697}";
print $char; # Output: ڗ
PHP:
$char = "\x{0697}";
echo $char; // Output: ڗ
Ruby:
char = "\u{0697}"
puts char # Output: ڗ
Rust:
let c = '\u{697}';
println!("{}", c); // Output: ڗ
Go:
char := '\u0697'
fmt.Printf("%c\n", char) // Output: ڗ
CSS:
/* CSS content property */
.element::before {
content: "\000697"; /* 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%97
MD5:
facacce2693d6aecb6d17a53adf0b46f
SHA1:
40072de1efa370824c8db3d6916f77aca81a265f
Base64:
2pc=