C:
char c = '\u0617';
printf("%c\n", c); // Output: ؗ
JavaScript:
const char = '\u0617';
console.log(char); // Output: ؗ
Java:
char c = '\u0617';
System.out.println(c); // Output: ؗ
JSON:
{"text": "\u0617"} // Value: ؗ
Python:
char = '\u0617'
print(char) # Output: ؗ
Perl:
my $char = "\x{0617}";
print $char; # Output: ؗ
PHP:
$char = "\x{0617}";
echo $char; // Output: ؗ
Ruby:
char = "\u{0617}"
puts char # Output: ؗ
Rust:
let c = '\u{617}';
println!("{}", c); // Output: ؗ
Go:
char := '\u0617'
fmt.Printf("%c\n", char) // Output: ؗ
CSS:
/* CSS content property */
.element::before {
content: "\000617"; /* 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=%D8%97
MD5:
fb5a7598a3f7f0b66aed2a44267587d6
SHA1:
6a0ced565f11c13044ce107897fcf8aa4a727054
Base64:
2Jc=