C:
char c = '\u0616';
printf("%c\n", c); // Output: ؖ
JavaScript:
const char = '\u0616';
console.log(char); // Output: ؖ
Java:
char c = '\u0616';
System.out.println(c); // Output: ؖ
JSON:
{"text": "\u0616"} // Value: ؖ
Python:
char = '\u0616'
print(char) # Output: ؖ
Perl:
my $char = "\x{0616}";
print $char; # Output: ؖ
PHP:
$char = "\x{0616}";
echo $char; // Output: ؖ
Ruby:
char = "\u{0616}"
puts char # Output: ؖ
Rust:
let c = '\u{616}';
println!("{}", c); // Output: ؖ
Go:
char := '\u0616'
fmt.Printf("%c\n", char) // Output: ؖ
CSS:
/* CSS content property */
.element::before {
content: "\000616"; /* 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%96
MD5:
5c04bb58108b54c8fea9196b15dda60d
SHA1:
d4f97ea56fb668678aa10f0f65a5ac6d60f35e9b
Base64:
2JY=