C:
char c = '\u0641';
printf("%c\n", c); // Output: ف
JavaScript:
const char = '\u0641';
console.log(char); // Output: ف
Java:
char c = '\u0641';
System.out.println(c); // Output: ف
JSON:
{"text": "\u0641"} // Value: ف
Python:
char = '\u0641'
print(char) # Output: ف
Perl:
my $char = "\x{0641}";
print $char; # Output: ف
PHP:
$char = "\x{0641}";
echo $char; // Output: ف
Ruby:
char = "\u{0641}"
puts char # Output: ف
Rust:
let c = '\u{641}';
println!("{}", c); // Output: ف
Go:
char := '\u0641'
fmt.Printf("%c\n", char) // Output: ف
CSS:
/* CSS content property */
.element::before {
content: "\000641"; /* 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%81
MD5:
8b1eae51598fcbabd799237404163c67
SHA1:
5bb2f0c8c3db95e77ea2e52e942a89ac511b5337
Base64:
2YE=