C:
char c = '\u0650';
printf("%c\n", c); // Output: ِ
JavaScript:
const char = '\u0650';
console.log(char); // Output: ِ
Java:
char c = '\u0650';
System.out.println(c); // Output: ِ
JSON:
{"text": "\u0650"} // Value: ِ
Python:
char = '\u0650'
print(char) # Output: ِ
Perl:
my $char = "\x{0650}";
print $char; # Output: ِ
PHP:
$char = "\x{0650}";
echo $char; // Output: ِ
Ruby:
char = "\u{0650}"
puts char # Output: ِ
Rust:
let c = '\u{650}';
println!("{}", c); // Output: ِ
Go:
char := '\u0650'
fmt.Printf("%c\n", char) // Output: ِ
CSS:
/* CSS content property */
.element::before {
content: "\000650"; /* 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=%D9%90
MD5:
dd8954c37d979e694bd47b2f2efdff56
SHA1:
09c4bc7bf52e19efcd93901189ba52408cb3b3eb
Base64:
2ZA=