C:
char c = '\u0656';
printf("%c\n", c); // Output: ٖ
JavaScript:
const char = '\u0656';
console.log(char); // Output: ٖ
Java:
char c = '\u0656';
System.out.println(c); // Output: ٖ
JSON:
{"text": "\u0656"} // Value: ٖ
Python:
char = '\u0656'
print(char) # Output: ٖ
Perl:
my $char = "\x{0656}";
print $char; # Output: ٖ
PHP:
$char = "\x{0656}";
echo $char; // Output: ٖ
Ruby:
char = "\u{0656}"
puts char # Output: ٖ
Rust:
let c = '\u{656}';
println!("{}", c); // Output: ٖ
Go:
char := '\u0656'
fmt.Printf("%c\n", char) // Output: ٖ
CSS:
/* CSS content property */
.element::before {
content: "\000656"; /* 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%96
MD5:
8a9bc1e9b38815eda6f46cc0f55a8cc8
SHA1:
9fe020cd56790df2c8fa3a50ee5757f370903719
Base64:
2ZY=