C:
char c = '\u0674';
printf("%c\n", c); // Output: ٴ
JavaScript:
const char = '\u0674';
console.log(char); // Output: ٴ
Java:
char c = '\u0674';
System.out.println(c); // Output: ٴ
JSON:
{"text": "\u0674"} // Value: ٴ
Python:
char = '\u0674'
print(char) # Output: ٴ
Perl:
my $char = "\x{0674}";
print $char; # Output: ٴ
PHP:
$char = "\x{0674}";
echo $char; // Output: ٴ
Ruby:
char = "\u{0674}"
puts char # Output: ٴ
Rust:
let c = '\u{674}';
println!("{}", c); // Output: ٴ
Go:
char := '\u0674'
fmt.Printf("%c\n", char) // Output: ٴ
CSS:
/* CSS content property */
.element::before {
content: "\000674"; /* 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%B4
MD5:
e1f32a33cc7d8b6e6680be01d707a2c2
SHA1:
6d24cf6e9d516a6eef9361e2489127ba2b313821
Base64:
2bQ=