C:
char c = '\u0683';
printf("%c\n", c); // Output: ڃ
JavaScript:
const char = '\u0683';
console.log(char); // Output: ڃ
Java:
char c = '\u0683';
System.out.println(c); // Output: ڃ
JSON:
{"text": "\u0683"} // Value: ڃ
Python:
char = '\u0683'
print(char) # Output: ڃ
Perl:
my $char = "\x{0683}";
print $char; # Output: ڃ
PHP:
$char = "\x{0683}";
echo $char; // Output: ڃ
Ruby:
char = "\u{0683}"
puts char # Output: ڃ
Rust:
let c = '\u{683}';
println!("{}", c); // Output: ڃ
Go:
char := '\u0683'
fmt.Printf("%c\n", char) // Output: ڃ
CSS:
/* CSS content property */
.element::before {
content: "\000683"; /* 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%83
MD5:
4f74de8a27032ec29a28b9b0e824ff5a
SHA1:
96d49a5a266fb9fde9548c060da5429701789eb8
Base64:
2oM=