C:
char c = '\u0654';
printf("%c\n", c); // Output: ٔ
JavaScript:
const char = '\u0654';
console.log(char); // Output: ٔ
Java:
char c = '\u0654';
System.out.println(c); // Output: ٔ
JSON:
{"text": "\u0654"} // Value: ٔ
Python:
char = '\u0654'
print(char) # Output: ٔ
Perl:
my $char = "\x{0654}";
print $char; # Output: ٔ
PHP:
$char = "\x{0654}";
echo $char; // Output: ٔ
Ruby:
char = "\u{0654}"
puts char # Output: ٔ
Rust:
let c = '\u{654}';
println!("{}", c); // Output: ٔ
Go:
char := '\u0654'
fmt.Printf("%c\n", char) // Output: ٔ
CSS:
/* CSS content property */
.element::before {
content: "\000654"; /* 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%94
MD5:
3b07a9d07f8ae36211a537058facbe45
SHA1:
77021526cc3954cd795c3042819236c1d62eed4f
Base64:
2ZQ=