C:
char c = '\u06A3';
printf("%c\n", c); // Output: ڣ
JavaScript:
const char = '\u06A3';
console.log(char); // Output: ڣ
Java:
char c = '\u06A3';
System.out.println(c); // Output: ڣ
JSON:
{"text": "\u06A3"} // Value: ڣ
Python:
char = '\u06A3'
print(char) # Output: ڣ
Perl:
my $char = "\x{06A3}";
print $char; # Output: ڣ
PHP:
$char = "\x{06A3}";
echo $char; // Output: ڣ
Ruby:
char = "\u{06A3}"
puts char # Output: ڣ
Rust:
let c = '\u{6A3}';
println!("{}", c); // Output: ڣ
Go:
char := '\u06A3'
fmt.Printf("%c\n", char) // Output: ڣ
CSS:
/* CSS content property */
.element::before {
content: "\0006A3"; /* 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%A3
MD5:
ed36aa9ec69bd69764654dd971193b87
SHA1:
743efb1e3e25f7ee476e3aaf74cc69962e44eb69
Base64:
2qM=